13 lines
366 B
C#
13 lines
366 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; }
|
|
|
|
}
|
|
}
|