namespace adas_core.Domain.Models.DTO;
///
/// Represents a data transfer object for conveying treatment information between application layers.
///
public class TreatmentDto
{
public string PatientNumber { get; set; } = string.Empty;
public PatientLocation? Location { get; set; }
public List? Treatments { get; set; }
public PatientTreatment? Treatment { get; set; }
public DateTime MessageTime { get; set; }
public bool WaitResult { get; set; }
}