13 lines
324 B
C#
13 lines
324 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|