hrms-api-backend/BMA.EHR.Retirement.Service/Requests/RetirementRequestApproverDto.cs
Bright b40d4e2765
Some checks failed
release-dev / release-dev (push) Failing after 11s
Migrate & Fix Report ขอลาออก #1661, #1665
2025-07-25 18:08:48 +07:00

34 lines
1,003 B
C#

using Newtonsoft.Json;
namespace BMA.EHR.Retirement.Service.Requests
{
public class RetirementRequestApproverDto
{
[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;
[JsonProperty("positionExecutiveName")]
public string PositionExecutiveName { get; set; } = string.Empty;
[JsonProperty("profileId")]
public Guid ProfileId { get; set; } = Guid.Empty;
[JsonProperty("keycloakId")]
public Guid KeycloakId { get; set; } = Guid.Empty;
[JsonProperty("org")]
public string Org { get; set; } = string.Empty;
}
}