rama creada apartir de master en j
This commit is contained in:
@@ -3,6 +3,9 @@ using adas_core.Domain.Models.MongoModels;
|
||||
|
||||
namespace adas_core.Domain.Models;
|
||||
|
||||
/// <summary>
|
||||
/// Represents an alarm condition associated with a patient observation value, extending the base patient observation value type.
|
||||
/// </summary>
|
||||
public class PatientObservationAlarm : BasePatientObservationValue
|
||||
{
|
||||
public InactivationState? InactivationState { get; set; }
|
||||
@@ -27,6 +30,9 @@ public class PatientObservationAlarm : BasePatientObservationValue
|
||||
public List<Source>? Sources { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represents a state indicating that an entity or process is currently inactive.
|
||||
/// </summary>
|
||||
public class InactivationState
|
||||
{
|
||||
public AlarmEnum.AudioVideoState? Audio { get; set; }
|
||||
@@ -34,6 +40,9 @@ public class InactivationState
|
||||
public bool? Acknowledge { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represents a source entity, serving as a base or generic type for defining source-related data or behavior.
|
||||
/// </summary>
|
||||
public class Source
|
||||
{
|
||||
public string? Code { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user