rama creada apartir de master en j
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
namespace adas_core.Domain.Models.AppSettings;
|
||||
|
||||
/// <summary>
|
||||
/// Represents the configuration settings for automatic recording functionality.
|
||||
/// </summary>
|
||||
public class AutoRecordingSettings
|
||||
{
|
||||
public AutoStart? AutoStart { get; set; }
|
||||
@@ -7,6 +10,9 @@ public class AutoRecordingSettings
|
||||
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; }
|
||||
@@ -14,6 +20,9 @@ public class AutoStart
|
||||
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; }
|
||||
@@ -21,6 +30,9 @@ public class AutoStop
|
||||
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; }
|
||||
|
||||
Reference in New Issue
Block a user