Files
adas-core/adas-core.Domain/Models/DTO/PumpDto.cs
T

21 lines
543 B
C#

using adas_core.Domain.Models.Pumps;
namespace adas_core.Domain.Models.DTO;
/// <summary>
/// Represents a data transfer object for conveying pump-related information between application layers.
/// </summary>
/// <!-- aidoc:v1 sig=c1749e0 -->
public class PumpDto
{
public string PatientNumber { get; set; } = string.Empty;
public PatientLocation? Location { get; set; }
public List<PumpObservation>? PumpObservations { get; set; }
public DateTime MessageTime { get; set; }
public bool WaitResult { get; set; }
}