เรียกรายชื่อจากระบบทดลองงาน
This commit is contained in:
parent
bb9a0bc73e
commit
3b24682301
5 changed files with 283 additions and 10 deletions
21
BMA.EHR.Application/Responses/PassProbationResponse.cs
Normal file
21
BMA.EHR.Application/Responses/PassProbationResponse.cs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue