using BMA.EHR.Domain.Models.Base; using Microsoft.EntityFrameworkCore; namespace BMA.EHR.Domain.Models.HR { public class LimitLeave : EntityBase { [Comment("ยังไม่ชัวใช้อะไรเป็นkey")] public string? Name { get; set; } public virtual List LimitTypeLeaves { get; set; } = new List(); public virtual List Profiles { get; set; } = new List(); } }