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