hrms-api-backend/BMA.EHR.Application/Responses/ProfileRetireJsonRequest.cs

15 lines
409 B
C#
Raw Permalink Normal View History

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; }
2025-03-27 04:42:52 +07:00
public string? child { get; set; }
}
}