RobotNet/RobotNet.WebApp/Charts/Enums/IndexAxis.cs
2025-10-15 15:15:53 +07:00

11 lines
182 B
C#

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