Files
adas-core/adas-core.Domain/Models/DTO/DiagnosisDto.cs
T

22 lines
642 B
C#

namespace adas_core.Domain.Models.DTO;
/// <summary>
/// Represents a data transfer object (DTO) for conveying diagnosis information between application layers or services.
/// </summary>
/// <!-- aidoc:v1 sig=9d64d60 -->
public class DiagnosisDto
{
public string PatientNumber { get; set; } = string.Empty;
public PatientLocation? Location { get; set; }
public ObservationData? ObservationData { get; set; }
public List<PatientObservation>? Observations { get; set; }
public List<PatientDiagnosis>? Diagnosis { get; set; }
public DateTime MessageTime { get; set; }
public bool WaitResult { get; set; }
}