using System.ComponentModel;
namespace ElectronNET.API.Entities
{
///
/// Defines the ThemeSourceMode enumeration.
///
public enum ThemeSourceMode
{
///
/// Operating system default.
///
[Description("system")]
System,
///
/// Light theme.
///
[Description("light")]
Light,
///
/// Dark theme.
///
[Description("dark")]
Dark
}
}