Kavita/API/Entities/Enums/Theme/ThemeProvider.cs
2024-05-13 15:00:13 -07:00

18 lines
383 B
C#

using System.ComponentModel;
namespace API.Entities.Enums.Theme;
public enum ThemeProvider
{
/// <summary>
/// Theme is provided by System
/// </summary>
[Description("System")]
System = 1,
/// <summary>
/// Theme is provided by the User (ie it's custom) or Downloaded via Themes Repo
/// </summary>
[Description("Custom")]
Custom = 2,
}