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