namespace adas_core.Domain.Models.DTO; /// /// Represents a data transfer object (DTO) for conveying diagnosis information between application layers or services. /// public class DiagnosisDto { public string PatientNumber { get; set; } = string.Empty; public PatientLocation? Location { get; set; } public ObservationData? ObservationData { get; set; } public List? Observations { get; set; } public List? Diagnosis { get; set; } public DateTime MessageTime { get; set; } public bool WaitResult { get; set; } }