mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-15 13:45:09 +00:00
13 lines
229 B
C#
13 lines
229 B
C#
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace ElectronNET.API.Entities
|
|||
|
|
{
|
|||
|
|
public enum TitleBarStyle
|
|||
|
|
{
|
|||
|
|
[JsonProperty("default")]
|
|||
|
|
defaultStyle,
|
|||
|
|
hidden,
|
|||
|
|
hiddenInset,
|
|||
|
|
customButtonsOnHover
|
|||
|
|
}
|
|||
|
|
}
|