9 lines
237 B
C#
9 lines
237 B
C#
namespace Application.Endpoints.Patients.Profile;
|
|
|
|
public class PatientProfileDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Email { get; set; }
|
|
public string Password { get; set; }
|
|
} |