using System.Text.Json.Serialization; namespace ElectronNET.API.Entities { /// /// /// public enum TitleBarStyle { /// /// The default style /// [JsonPropertyName("default")] defaultStyle, /// /// The hidden /// hidden, /// /// The hidden inset /// hiddenInset, /// /// The custom buttons on hover /// customButtonsOnHover } }