Class PatientDto
Response DTO representing a patient profile. Inherits common fields (Id, Username, CreatedAt, Name, Address, BirthDate) from ProfileDtoBase.
public class PatientDto : ProfileDtoBase
- Inheritance
-
PatientDto
- Inherited Members
- Extension Methods
Properties
AppointmentCount
public int AppointmentCount { get; set; }
Property Value
AppointmentIds
public List<Guid> AppointmentIds { get; set; }
Property Value
ClinicalDocumentCount
public int ClinicalDocumentCount { get; set; }
Property Value
ClinicalDocumentIds
public List<Guid> ClinicalDocumentIds { get; set; }
Property Value
Gender
public string Gender { get; set; }
Property Value
PrimaryPhysicianId
public Guid? PrimaryPhysicianId { get; set; }
Property Value
- Guid?
PrimaryPhysicianName
public string? PrimaryPhysicianName { get; set; }
Property Value
Race
public string? Race { get; set; }