13 lines
213 B
C#
13 lines
213 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace RobotNet.WebApp.Charts.Enums;
|
|
|
|
|
|
[JsonConverter(typeof(LowerCaseEnumConverter<BorderJoinStyle>))]
|
|
public enum BorderJoinStyle
|
|
{
|
|
Round,
|
|
Bevel,
|
|
Miter
|
|
}
|