Creado apartir del commit b888de6c92056de294456f581a56e25e734d4ab7 de develop
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
using adas_core.Domain.Enums;
|
||||
using adas_core.Domain.Models.MongoModels;
|
||||
|
||||
namespace adas_core.Domain.Models;
|
||||
|
||||
public class PatientObservationAlarm : BasePatientObservationValue
|
||||
{
|
||||
public InactivationState? InactivationState { get; set; }
|
||||
public AlarmEnum.EventPhase EventPhase { get; set; } = AlarmEnum.EventPhase.Continue;
|
||||
public string? Event { get; set; }
|
||||
public string? EventId { get; set; }
|
||||
public AlarmEnum.ObservationAlarmState? State { get; set; }
|
||||
public AlarmEnum.ObservationAlarmPriority? Priority { get; set; }
|
||||
public int? PriorityLevel { get; set; }
|
||||
public AlarmConfig? AlarmConfig { get; set; }
|
||||
public AlarmEnum.ObservationAlarmType? Type { get; set; }
|
||||
public string? AlertColor { get; set; }
|
||||
|
||||
//MSH Time of HL7
|
||||
public DateTime MessageTime { get; set; }
|
||||
public bool? Persist { get; set; }
|
||||
|
||||
public bool Expired { get; set; }
|
||||
|
||||
public int? Expires { get; set; }
|
||||
|
||||
public List<Source>? Sources { get; set; }
|
||||
}
|
||||
|
||||
public class InactivationState
|
||||
{
|
||||
public AlarmEnum.AudioVideoState? Audio { get; set; }
|
||||
public AlarmEnum.AudioVideoState? Visual { get; set; }
|
||||
public bool? Acknowledge { get; set; }
|
||||
}
|
||||
|
||||
public class Source
|
||||
{
|
||||
public string? Code { get; set; }
|
||||
|
||||
public string? OriginalName { get; set; }
|
||||
|
||||
public string? CodeSystem { get; set; }
|
||||
public string? Units { get; set; }
|
||||
|
||||
public object? Value { get; set; }
|
||||
public string? Result { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user