fix: เริ่มต่อ api โครงสร้างใหม่ ระบบลา
This commit is contained in:
parent
b7f19d7077
commit
66d491a2af
5 changed files with 134 additions and 23 deletions
12
BMA.EHR.Application/Responses/Profiles/SearchProfileDto.cs
Normal file
12
BMA.EHR.Application/Responses/Profiles/SearchProfileDto.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
namespace BMA.EHR.Application.Responses.Profiles
|
||||
{
|
||||
public class SearchProfileDto
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
|
||||
public string? Prefix { get; set; }
|
||||
public string? FirstName { get; set; }
|
||||
public string? LastName { get; set; }
|
||||
public string? CitizenId { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
namespace BMA.EHR.Application.Responses.Profiles
|
||||
{
|
||||
public class SearchProfileResultDto
|
||||
{
|
||||
public string Messsage { get; set; } = string.Empty;
|
||||
|
||||
public int Status { get; set; } = -1;
|
||||
|
||||
public List<SearchProfileDto> Result { get; set; } = new List<SearchProfileDto>();
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue