using BMA.EHR.Report.Service.Models; using System; using System.ComponentModel.DataAnnotations; namespace BMA.EHR.Profile.Service.Models.HR { public class ProfileAbility : 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 List ProfileAbilityHistorys { get; set; } = new List(); public virtual Profile? Profile { get; set; } } }