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