12 lines
197 B
C#
12 lines
197 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace RobotNet.WebApp.Charts.Enums;
|
|
|
|
[JsonConverter(typeof(LowerCaseEnumConverter<AxisDirection>))]
|
|
public enum AxisDirection
|
|
{
|
|
X,
|
|
Y,
|
|
XY
|
|
}
|