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

9 lines
237 B
C#

namespace Application.Endpoints.Patients.Profile;
public class PatientProfileDto
{
public Guid Id { get; set; }
public string Name { get; set; }
public string Email { get; set; }
public string Password { get; set; }
}