15 lines
No EOL
518 B
C#
15 lines
No EOL
518 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using BMA.EHR.Report.Service.Models;
|
|
|
|
namespace BMA.EHR.Recruit.Service.Models.Recruits
|
|
{
|
|
public class RecruitImportHistory : EntityBase
|
|
{
|
|
[Required, Comment("รายละเอียดการนำเข้า"), Column(Order = 1)]
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
public RecruitImport RecruitImport { get; set; }
|
|
}
|
|
} |