mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 12:14:44 -04:00
18 lines
383 B
C#
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,
|
|
}
|