using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace BMA.EHR.Recurit.Exam.Service.Models.Disables { public class DisableImportHistory : EntityBase { [Required, Comment("รายละเอียดการนำเข้า"), Column(Order = 1)] public string Description { get; set; } = string.Empty; public PeriodExam PeriodExam { get; set; } } }