mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-21 15:16:33 -04:00
c62b20f54b
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
18 lines
393 B
C#
18 lines
393 B
C#
using System.ComponentModel;
|
|
|
|
namespace Kavita.Models.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,
|
|
}
|