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

19 lines
525 B
C#

namespace adas_core.Domain.Models.DTO;
/// <summary>
/// Represents a data transfer object for transferring appointment information between application layers or services.
/// </summary>
/// <!-- aidoc:v1 sig=ed5b9a8 -->
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; }
}