9 lines
260 B
C#
9 lines
260 B
C#
namespace Application.Endpoints.Doctors.Registration;
|
|
|
|
public class DoctorRegistrationDto
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? Password { get; set; }
|
|
public string? Description { get; set; }
|
|
} |