11 lines
282 B
C#
11 lines
282 B
C#
|
|
namespace DTS.Common.Interface.DASFactory.Diagnostics
|
|||
|
|
{
|
|||
|
|
public interface ITriggerCheck
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Here is where the trigger check results are stored
|
|||
|
|
/// </summary>
|
|||
|
|
ITriggerCheckResult TriggerResult { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|