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