Init
- aggiunto un po di tutto comeil progetto del prof
This commit is contained in:
48
SeniorAssistant/Configuration/Theme.cs
Normal file
48
SeniorAssistant/Configuration/Theme.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace SeniorAssistant.Configuration
|
||||
{
|
||||
public class Theme
|
||||
{
|
||||
public Skin Skin { get; set; }
|
||||
public Layout Layout { get; set; }
|
||||
}
|
||||
public enum Layout
|
||||
{
|
||||
[Description("fixed")]
|
||||
Fixed,
|
||||
|
||||
[Description("layout-boxed")]
|
||||
LayoutBoxed,
|
||||
|
||||
[Description("layout-top-nav")]
|
||||
LayoutTopNav,
|
||||
|
||||
[Description("sidebar-collapse")]
|
||||
SidebarCollapse,
|
||||
|
||||
[Description("sidebar-mini")]
|
||||
SidebarMini
|
||||
}
|
||||
|
||||
public enum Skin
|
||||
{
|
||||
[Description("skin-blue")]
|
||||
Blue,
|
||||
|
||||
[Description("skin-black")]
|
||||
Black,
|
||||
|
||||
[Description("skin-purple")]
|
||||
Purple,
|
||||
|
||||
[Description("skin-yellow")]
|
||||
Yellow,
|
||||
|
||||
[Description("skin-red")]
|
||||
Red,
|
||||
|
||||
[Description("skin-green")]
|
||||
Green
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user