10 lines
156 B
C#
10 lines
156 B
C#
|
namespace MasstransferCommon.Model.Enum;
|
|||
|
|
|||
|
public enum TriggerActivationEnum
|
|||
|
{
|
|||
|
RisingEdge,
|
|||
|
FallingEdge,
|
|||
|
LevelHigh,
|
|||
|
LevelLow,
|
|||
|
AnyEdge
|
|||
|
}
|