rama creada apartir de master en j

This commit is contained in:
jrojas
2026-06-26 10:29:23 +02:00
parent 319fd3dfb0
commit c1517fda87
2810 changed files with 1927392 additions and 25392 deletions
@@ -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; }