using System.Text.Json.Serialization; namespace RobotNet.WebApp.Charts.Enums; [JsonConverter(typeof(LowerCaseEnumConverter))] public enum Unit { /// /// No unit. /// None, /// /// Ems. /// Em, /// /// Percent. /// Percentage, /// /// Points. /// Pt, /// /// Pixels. /// Px, /// /// Root ems. /// Rem, /// /// Viewport height. /// Vh, /// /// Viewport maximum height. /// VMax, /// /// Viewport minimum height. /// VMin, /// /// Viewport width. /// Vw }