21 lines
468 B
C#
21 lines
468 B
C#
namespace BMA.EHR.Application.Responses
|
|
{
|
|
public class PassProbationResponse
|
|
{
|
|
public bool successful { get; set; }
|
|
|
|
public List<DataResponse> result { 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;
|
|
}
|
|
}
|