เรียกรายชื่อจากระบบทดลองงาน

This commit is contained in:
Suphonchai Phoonsawat 2023-09-02 18:19:30 +07:00
parent bb9a0bc73e
commit 3b24682301
5 changed files with 283 additions and 10 deletions

View 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;
}
}