Files
2026-06-26 10:29:23 +02:00

19 lines
521 B
C#

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