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