hrms-api-recruit/Models/Recruits/RecruitImportHistory.cs
Suphonchai Phoonsawat cc251f7129 fix
2026-05-12 16:32:46 +07:00

14 lines
No EOL
473 B
C#

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