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