Files
adas-core/adas-core.Domain/Models/DTO/DiagnosisDto.cs
T
2026-06-26 10:29:23 +02:00

21 lines
608 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>
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; }
}