14 lines
No EOL
480 B
C#
14 lines
No EOL
480 B
C#
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; }
|
|
}
|
|
} |