8 lines
214 B
C#
8 lines
214 B
C#
namespace Application.Endpoints.Patients.Registration;
|
|
|
|
public class PatientRegistrationDto
|
|
{
|
|
public string Name { get; set; }
|
|
public string Email { get; set; }
|
|
public string Password { get; set; }
|
|
} |