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)
///
[Description("User")]
User = 2
}