init
This commit is contained in:
58
Common/DTS.Common/Enums/TSRAIRGo/ArmStateMachineStates.cs
Normal file
58
Common/DTS.Common/Enums/TSRAIRGo/ArmStateMachineStates.cs
Normal file
@@ -0,0 +1,58 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace DTS.Common.Enums.TSRAIRGo
|
||||
{
|
||||
public class ArmStateMachineStates
|
||||
{
|
||||
public enum States
|
||||
{
|
||||
[Description("Checking Arm State")]
|
||||
CheckingArmState,
|
||||
[Description("Checking For DAS")]
|
||||
CheckingForDAS,
|
||||
[Description("Checking For Data")]
|
||||
CheckingForData,
|
||||
[Description("Clearing Flash")]
|
||||
ClearingFlash,
|
||||
[Description("Disarmed")]
|
||||
Disarmed,
|
||||
[Description("Downloading")]
|
||||
Downloading,
|
||||
[Description("Download cleaning up")]
|
||||
DownloadCleaningUp,
|
||||
[Description("Download finished")]
|
||||
DownloadFinished,
|
||||
[Description("Failed")]
|
||||
Failed,
|
||||
[Description("Faulted")]
|
||||
Faulted,
|
||||
[Description("Getting Event Info")]
|
||||
GettingEventInfo,
|
||||
[Description("Waiting for user")]
|
||||
IDLE,
|
||||
[Description("Post Test Processing")]
|
||||
PostTestProcessing,
|
||||
[Description("Preparing For Arming")]
|
||||
PreparingForArming,
|
||||
[Description("Ready For Download")]
|
||||
ReadyForDownload,
|
||||
[Description("Rearming")]
|
||||
Rearming,
|
||||
[Description("Recording")]
|
||||
Recording,
|
||||
[Description("Waiting For Interval")]
|
||||
WaitingForInterval,
|
||||
[Description("Waiting for schedule start")]
|
||||
WaitingForSchedule,
|
||||
[Description("Waiting For Trigger")]
|
||||
WaitingForTrigger,
|
||||
[Description("Streaming")]
|
||||
Streaming,
|
||||
}
|
||||
}
|
||||
}
|
||||
14
Common/DTS.Common/Enums/TSRAIRGo/NavigationButtonId.cs
Normal file
14
Common/DTS.Common/Enums/TSRAIRGo/NavigationButtonId.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace DTS.Common.Enums.TSRAIRGo
|
||||
{
|
||||
public enum NavigationButtonId
|
||||
{
|
||||
TestId,
|
||||
ArmDisarm,
|
||||
Trigger,
|
||||
Download,
|
||||
ViewData,
|
||||
ExportData,
|
||||
Help,
|
||||
Dashboard
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user