fix: เริ่มต่อ api โครงสร้างใหม่ ระบบลา

This commit is contained in:
Suphonchai Phoonsawat 2024-05-29 13:33:23 +07:00
parent b7f19d7077
commit 66d491a2af
5 changed files with 134 additions and 23 deletions

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

View file

@ -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>();
}
}