Files
FACULTATE-HEALTHCARE_MANAGER/backend/Application/Endpoints/Patients/ResetPassword/PatientLoginDto.cs
T
2024-04-08 00:03:24 +03:00

7 lines
181 B
C#

namespace Application.Endpoints.Patients.ResetPassword;
public class PatientResetPasswordDto
{
public string? Email { get; set; }
public string? Password { get; set; }
}