15 lines
272 B
Plaintext
15 lines
272 B
Plaintext
using System;
|
|
|
|
namespace DTS.Common.DAS.Concepts.DAS.Channel
|
|
{
|
|
[Flags]
|
|
public enum LevelTriggerTypes
|
|
{
|
|
NONE = 0x00,
|
|
OutsideWindow = 0x01,
|
|
InsideWindow = 0x02,
|
|
LessThan = 0x04,
|
|
GreaterThan = 0x08
|
|
}
|
|
}
|