45 lines
644 B
C#
45 lines
644 B
C#
///
|
|
/// Copyright (c) 2018 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
|
|
namespace Config.Entities
|
|
{
|
|
|
|
public enum Side
|
|
{
|
|
#if LANG_CS
|
|
[Description("Levá")] Left,
|
|
[Description("Pravá")] Right,
|
|
#else
|
|
[Description("Left")] Left,
|
|
[Description("Right")] Right,
|
|
#endif
|
|
Count
|
|
}
|
|
|
|
public enum FlowDir
|
|
{
|
|
R_L,
|
|
L_R,
|
|
Count
|
|
}
|
|
|
|
public enum Counting
|
|
{
|
|
Arbitrary,
|
|
Positive,
|
|
Negative,
|
|
Count
|
|
}
|
|
|
|
public enum OptoHeadState
|
|
{
|
|
Disabled,
|
|
OptoAndDirOK,
|
|
OptoNok,
|
|
DirNok,
|
|
Count
|
|
}
|
|
}
|