init
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
using DTS.Common.Interface.DASFactory.Diagnostics;
|
||||
|
||||
namespace DTS.DASLib.Service
|
||||
{
|
||||
public class ArmCheckActions : IArmCheckActions
|
||||
{
|
||||
public bool PerformBatteryVoltageCheck { get; set; }
|
||||
public bool PerformInputVoltageCheck { get; set; }
|
||||
public bool PerformSensorIdCheck { get; set; }
|
||||
public bool PerformEventLineCheck { get; set; }
|
||||
public bool PerformSquibResistanceCheck { get; set; }
|
||||
public bool PerformTiltSensorCheck { get; set; }
|
||||
public bool PerformTemperatureCheck { get; set; }
|
||||
public bool PerformClockSyncCheck { get; set; }
|
||||
|
||||
public ArmCheckActions()
|
||||
{
|
||||
PerformBatteryVoltageCheck = false;
|
||||
PerformInputVoltageCheck = false;
|
||||
PerformSensorIdCheck = false;
|
||||
PerformEventLineCheck = false;
|
||||
PerformSquibResistanceCheck = false;
|
||||
PerformTiltSensorCheck = false;
|
||||
PerformTemperatureCheck = false;
|
||||
PerformClockSyncCheck = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user