14 lines
409 B
C#
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; }
|
|
|
|
}
|
|
}
|