api cms แก้หน้าสมัครสอบ
This commit is contained in:
parent
c986fc1500
commit
9486ad160d
21 changed files with 9389 additions and 0 deletions
19
Models/CMSGovernment.cs
Normal file
19
Models/CMSGovernment.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using BMA.EHR.Recurit.Exam.Service.Models.Documents;
|
||||
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue