Creado apartir del commit b888de6c92056de294456f581a56e25e734d4ab7 de develop
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
namespace adas_core.Domain.Enums;
|
||||
|
||||
public static class StatusEnum
|
||||
{
|
||||
public enum Discharge
|
||||
{
|
||||
Altable,
|
||||
NoAltable
|
||||
}
|
||||
|
||||
public enum PointOfCare
|
||||
{
|
||||
//Bloqueado
|
||||
Locked,
|
||||
|
||||
//Reservado cuando hay una admisión prevista
|
||||
Reserved,
|
||||
|
||||
//Disponible
|
||||
Available,
|
||||
|
||||
//En uso
|
||||
InUse
|
||||
}
|
||||
|
||||
public enum Type
|
||||
{
|
||||
Ok = 0,
|
||||
Warning = 1,
|
||||
Alert = 2
|
||||
}
|
||||
|
||||
public enum User
|
||||
{
|
||||
Enabled,
|
||||
EnabledUnlocked,
|
||||
EnabledLocked,
|
||||
Disabled
|
||||
}
|
||||
|
||||
public enum Video
|
||||
{
|
||||
Initialized,
|
||||
Recording,
|
||||
Paused,
|
||||
Stopped,
|
||||
Finished,
|
||||
Published,
|
||||
Deleted,
|
||||
Purged,
|
||||
Error
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user