Files
DP44/Common/DTS.Common.DAS.Concepts/.svn/pristine/c4/c43e7a0fbe217a009278daccc0c9216b47ff2207.svn-base

15 lines
272 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System;
namespace DTS.Common.DAS.Concepts.DAS.Channel
{
[Flags]
public enum LevelTriggerTypes
{
NONE = 0x00,
OutsideWindow = 0x01,
InsideWindow = 0x02,
LessThan = 0x04,
GreaterThan = 0x08
}
}