2025-04-22 14:28:51 +07:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
public class LeaveRequestApproverDto
|
|
|
|
|
|
{
|
|
|
|
|
|
[JsonProperty("seq")]
|
|
|
|
|
|
public int Seq { get; set; } = 0;
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("prefix")]
|
|
|
|
|
|
public string Prefix { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("firstName")]
|
|
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("lastName")]
|
|
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("positionName")]
|
|
|
|
|
|
public string PositionName { get; set; } = string.Empty;
|
|
|
|
|
|
|
2025-12-11 21:27:18 +07:00
|
|
|
|
[JsonProperty("positionSign")]
|
|
|
|
|
|
public string? PositionSign { get; set; } = string.Empty;
|
|
|
|
|
|
|
2025-04-22 14:28:51 +07:00
|
|
|
|
[JsonProperty("profileId")]
|
|
|
|
|
|
public Guid ProfileId { get; set; } = Guid.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("keycloakId")]
|
|
|
|
|
|
public Guid KeycloakId { get; set; } = Guid.Empty;
|
2026-01-16 09:25:22 +07:00
|
|
|
|
|
|
|
|
|
|
[JsonProperty("positionLeaveName")]
|
|
|
|
|
|
public string PositionLeaveName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("posExecutiveName")]
|
|
|
|
|
|
public string PosExecutiveName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("organizationName")]
|
|
|
|
|
|
public string OrganizationName { get; set; } = string.Empty;
|
|
|
|
|
|
|
2025-04-22 14:28:51 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|