17 lines
375 B
C#
17 lines
375 B
C#
using adas_core.Domain.Models.Pumps;
|
|
|
|
namespace adas_core.Domain.Models.DTO;
|
|
|
|
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; }
|
|
} |