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

41 lines
1.1 KiB
C#

namespace adas_core.Domain.Models.AppSettings;
/// <summary>
/// Represents the configuration settings for automatic recording functionality.
/// </summary>
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>
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>
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>
public class MustSendAlert
{
public bool BlueCode { get; set; }
public bool HemoFilterAlert { get; set; }
public bool RespirationAlert { get; set; }
}