namespace adas_core.Domain.Models.AppSettings;
///
/// Represents the configuration settings for automatic recording functionality.
///
public class AutoRecordingSettings
{
public AutoStart? AutoStart { get; set; }
public AutoStop? AutoStop { get; set; }
public MustSendAlert? MustSendAlert { get; set; }
}
///
/// Represents functionality related to automatic startup of a process or service.
///
public class AutoStart
{
public int BlueCode { get; set; }
public int HemoFilterAlert { get; set; }
public int RespirationAlert { get; set; }
}
///
/// Represents an automatic stop mechanism that handles stopping operations or processes automatically.
///
public class AutoStop
{
public int BlueCode { get; set; }
public int HemoFilterAlert { get; set; }
public int RespirationAlert { get; set; }
}
///
/// Represents a condition or requirement that indicates an alert must be sent.
///
public class MustSendAlert
{
public bool BlueCode { get; set; }
public bool HemoFilterAlert { get; set; }
public bool RespirationAlert { get; set; }
}