add migration for LeaveRequest

This commit is contained in:
Suphonchai Phoonsawat 2023-11-27 11:52:28 +07:00
parent d6e43a44bb
commit 5c51bf1f99
9 changed files with 2156 additions and 6 deletions

View file

@ -0,0 +1,9 @@
using BMA.EHR.Domain.Models.Base;
namespace BMA.EHR.Domain.Models.Leave.Commons
{
public class LeaveType : EntityBase
{
public string Name { get; set; } = string.Empty;
}
}