using System; using System.ComponentModel.DataAnnotations; using BMA.EHR.Report.Service.Models; namespace BMA.EHR.Profile.Service.Models.HR { public class ProfileAbilityHistory : EntityBase { /// /// ด้าน (ใช้เฉพาะ ความสามารถพิเศษ) /// public string? Field { get; set; } /// /// รายละเอียด /// public string? Detail { get; set; } /// /// หมายเหตุ /// public string? Remark { get; set; } /// /// วันที่เริ่มต้น /// public DateTime? DateStart { get; set; } /// /// วันที่สิ้นสุด /// public DateTime? DateEnd { get; set; } /// /// เอกสารอ้างอิง /// public string? Reference { get; set; } // public string? Side { get; set; } // public string? Detail { get; set; } // public string? Note { get; set; } public virtual ProfileAbility? ProfileAbility { get; set; } } }