16 lines
540 B
C#
16 lines
540 B
C#
|
|
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 PeriodExamQrCode : EntityBase
|
|||
|
|
{
|
|||
|
|
[Required, Comment("Id รอบสมัครสอบ")]
|
|||
|
|
public virtual PeriodExam? PeriodExam { get; set; }
|
|||
|
|
[Required, Comment("Id ไฟล์รูป")]
|
|||
|
|
public virtual Document? Document { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|