2023-06-26 14:02:04 +07:00
|
|
|
|
using BMA.EHR.Domain.Models.Base;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
2023-06-26 15:18:39 +07:00
|
|
|
|
namespace BMA.EHR.Domain.Models.HR
|
2023-06-26 14:02:04 +07:00
|
|
|
|
{
|
|
|
|
|
|
public class LimitLeave : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
[Comment("ยังไม่ชัวใช้อะไรเป็นkey")]
|
|
|
|
|
|
public string? Name { get; set; }
|
|
|
|
|
|
public virtual List<LimitTypeLeave> LimitTypeLeaves { get; set; } = new List<LimitTypeLeave>();
|
|
|
|
|
|
public virtual List<Profile> Profiles { get; set; } = new List<Profile>();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|