13 lines
481 B
C#
13 lines
481 B
C#
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<LimitTypeLeave> LimitTypeLeaves { get; set; } = new List<LimitTypeLeave>();
|
|
public virtual List<Profile> Profiles { get; set; } = new List<Profile>();
|
|
}
|
|
}
|