Files
adas-core/adas-core.Domain/Models/AppSettings/AutoRecordingSettings.cs
T

45 lines
1.3 KiB
C#

namespace adas_core.Domain.Models.AppSettings;
/// <summary>
/// Represents the configuration settings for automatic recording functionality.
/// </summary>
/// <!-- aidoc:v1 sig=9229177 -->
public class AutoRecordingSettings
{
public AutoStart? AutoStart { get; set; }
public AutoStop? AutoStop { get; set; }
public MustSendAlert? MustSendAlert { get; set; }
}
/// <summary>
/// Represents functionality related to automatic startup of a process or service.
/// </summary>
/// <!-- aidoc:v1 sig=6a81bf1 -->
public class AutoStart
{
public int BlueCode { get; set; }
public int HemoFilterAlert { get; set; }
public int RespirationAlert { get; set; }
}
/// <summary>
/// Represents an automatic stop mechanism that handles stopping operations or processes automatically.
/// </summary>
/// <!-- aidoc:v1 sig=240b0b2 -->
public class AutoStop
{
public int BlueCode { get; set; }
public int HemoFilterAlert { get; set; }
public int RespirationAlert { get; set; }
}
/// <summary>
/// Represents a condition or requirement that indicates an alert must be sent.
/// </summary>
/// <!-- aidoc:v1 sig=3f6f290 -->
public class MustSendAlert
{
public bool BlueCode { get; set; }
public bool HemoFilterAlert { get; set; }
public bool RespirationAlert { get; set; }
}