namespace adas_core.Domain.Models.DTO; public class ObservationDto { 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; } }