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