Class ObservationDto
Represents a data transfer object for an observation, used to transfer observation data between application layers or services.
public class ObservationDto
- Inheritance
-
ObservationDto
- Inherited Members
- Extension Methods
Properties
Diagnosis
public List<PatientDiagnosis>? Diagnosis { get; set; }
Property Value
Location
public PatientLocation? Location { get; set; }
Property Value
MessageTime
public DateTime MessageTime { get; set; }
Property Value
ObservationData
public ObservationData? ObservationData { get; set; }
Property Value
Observations
public List<PatientObservation>? Observations { get; set; }
Property Value
PatientNumber
public string PatientNumber { get; set; }
Property Value
WaitResult
public bool WaitResult { get; set; }