22 lines
466 B
C#
22 lines
466 B
C#
|
|
namespace BMA.EHR.Application.Responses
|
|||
|
|
{
|
|||
|
|
public class PassProbationResponse
|
|||
|
|
{
|
|||
|
|
public bool successful { get; set; }
|
|||
|
|
|
|||
|
|
public List<DataResponse> data { get; set; } = new();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class DataResponse
|
|||
|
|
{
|
|||
|
|
public ProfileResponse person { get; set; } = new();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class ProfileResponse
|
|||
|
|
{
|
|||
|
|
public Guid id { get; set; } = Guid.Empty;
|
|||
|
|
|
|||
|
|
public string name { get; set; } = string.Empty;
|
|||
|
|
}
|
|||
|
|
}
|