19 lines
291 B
C#
19 lines
291 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace RobotNet.WebApp.Charts.Enums;
|
|
|
|
[JsonConverter(typeof(LowerCaseEnumConverter<PointStyle>))]
|
|
public enum PointStyle
|
|
{
|
|
Circle,
|
|
Cross,
|
|
CrossRot,
|
|
Dash,
|
|
Line,
|
|
Rect,
|
|
RectRounded,
|
|
RectRot,
|
|
Star,
|
|
Triangle,
|
|
}
|