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

7 lines
165 B
C#

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