using DTS.Common.Interface.DASFactory.Diagnostics;
namespace DTS.DASLib.Service
{
public class TriggerCheckResult : ITriggerCheckResult
{
///
/// Is the status good on the DAS?
///
public bool IsStatusGood { get; set; }
///
/// Is the start record line currently active on the DAS?
///
public bool IsStartRecordActive { get; set; }
///
/// Has the start record line been active at any point after arm?
///
public bool HasStartRecordBeenActive { get; set; }
///
/// Is the trigger currently active?
///
public bool IsTriggered { get; set; }
///
/// Has the trigger line been active at any point after arm?
///
public bool HasTriggered { get; set; }
}
}