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

10 lines
285 B
C#

namespace Application.Endpoints.Doctors.Profile;
public class DoctorProfileUpdateDto
{
public Guid Id { get; set; }
public string Name { get; set; }
public string Email { get; set; }
public string Password { get; set; }
public string Description { get; set; }
}