16 lines
390 B
C#
16 lines
390 B
C#
namespace adas_core.Domain.Models.DTO;
|
|
|
|
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; }
|
|
} |