7 lines
181 B
C#
7 lines
181 B
C#
namespace Application.Endpoints.Patients.ResetPassword;
|
|
|
|
public class PatientResetPasswordDto
|
|
{
|
|
public string? Email { get; set; }
|
|
public string? Password { get; set; }
|
|
} |