Files
adas-core/adas-core.Domain/Models/DTO/RecordingAlertDto.cs
T
2026-06-26 10:29:23 +02:00

20 lines
590 B
C#

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