namespace adas_core.Domain.Models.DTO; /// /// Represents a data transfer object for transferring appointment information between application layers or services. /// public class AppointmentDto { public string PatientNumber { get; set; } = string.Empty; public PatientLocation? Location { get; set; } public List? Appointments { get; set; } public DateTime MessageTime { get; set; } public bool WaitResult { get; set; } }