10 lines
131 B
C#
10 lines
131 B
C#
namespace TheXamlGuy.Framework.Core;
|
|
|
|
public enum SensorPlacement
|
|
{
|
|
Left = 0,
|
|
Top = 1,
|
|
Right = 3,
|
|
Bottom = 4,
|
|
}
|