using adas_core.Domain.Models.Recording; namespace adas_core.Domain.Models.DTO; /// /// Represents a data transfer object used to convey information about a recording alert between application layers or services. /// public class RecordingAlertDto { public string? PatientNumber { get; set; } public PatientLocation? Location { get; set; } public List? RecordingAlerts { get; set; } public RecordingData? RecordingData { get; set; } public DateTime MessageTime { get; set; } public bool WaitResult { get; set; } }