hrms-api-report-v1/Models/Exam/CMSGovernment.cs

17 lines
463 B
C#

using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recurit.Exam.Service.Models
{
public class CMSGovernment : EntityBase
{
[Required, Comment("Id CMS")]
public virtual CMSCandidate? CMSCandidate { get; set; }
[Comment("ชื่อลิงค์")]
public string? Name { get; set; }
[Comment("ลิงค์")]
public string? Link { get; set; }
}
}