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; } }