2023-09-02 18:19:30 +07:00
|
|
|
|
namespace BMA.EHR.Application.Responses
|
|
|
|
|
|
{
|
|
|
|
|
|
public class PassProbationResponse
|
|
|
|
|
|
{
|
|
|
|
|
|
public bool successful { get; set; }
|
|
|
|
|
|
|
2024-11-04 18:00:35 +07:00
|
|
|
|
public List<DataResponse> result { get; set; } = new();
|
2023-09-02 18:19:30 +07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|