20 lines
590 B
C#
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; }
|
|
} |