hrms-api-backend/BMA.EHR.Application/Responses/ProfileRetireJsonRequest.cs
moss 3ba0607a80
Some checks failed
release-dev / release-dev (push) Failing after 11s
report retire sort
2025-03-27 04:42:52 +07:00

14 lines
409 B
C#

namespace BMA.EHR.Application.Responses
{
public class ProfileRetireJsonRequest
{
public string? order { get; set; }
public string? fullName { get; set; }
public string? position { get; set; }
public string? posNo { get; set; }
public string? root { get; set; }
public string? reason { get; set; }
public string? child { get; set; }
}
}