hrms-api-backend/BMA.EHR.Domain/Models/Leave/Requests/LeaveRequestApprover.cs
2025-04-17 09:31:05 +07:00

27 lines
747 B
C#

using BMA.EHR.Domain.Models.Base;
namespace BMA.EHR.Domain.Models.Leave.Requests
{
public class LeaveRequestApprover: EntityBase
{
public LeaveRequest LeaveRequest { get; set; }
public int Seq { get; set; } = 0;
public string Prefix { get; set; } = string.Empty;
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
public string PositionName { get; set; } = string.Empty;
public Guid ProfileId { get; set; } = Guid.Empty;
public Guid KeycloakId { get; set; } = Guid.Empty;
public string ApproveStatus { get; set; } = string.Empty;
public string Comment { get; set; } = string.Empty;
}
}