Files

15 lines
343 B
C#

namespace adas_core.Domain.Models.DTO;
public class AppointmentDto
{
public string PatientNumber { get; set; } = string.Empty;
public PatientLocation? Location { get; set; }
public List<PatientAppointment>? Appointments { get; set; }
public DateTime MessageTime { get; set; }
public bool WaitResult { get; set; }
}