Init
- aggiunto un po di tutto comeil progetto del prof
This commit is contained in:
61
SeniorAssistant/Configuration/Kendo.cs
Normal file
61
SeniorAssistant/Configuration/Kendo.cs
Normal file
@@ -0,0 +1,61 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace SeniorAssistant.Configuration
|
||||
{
|
||||
public class Kendo
|
||||
{
|
||||
public string Version { get; set; }
|
||||
public Style Style { get; set; }
|
||||
}
|
||||
|
||||
public enum Style
|
||||
{
|
||||
[Description("black")]
|
||||
Black,
|
||||
|
||||
[Description("blueopal")]
|
||||
Blue,
|
||||
|
||||
[Description("bootstrap-v4")]
|
||||
Bootstrap,
|
||||
|
||||
[Description("default-v2")]
|
||||
Default,
|
||||
|
||||
[Description("fiori")]
|
||||
Fiori,
|
||||
|
||||
[Description("flat")]
|
||||
Flat,
|
||||
|
||||
[Description("highcontrast")]
|
||||
HighContrast,
|
||||
|
||||
[Description("material")]
|
||||
Material,
|
||||
|
||||
[Description("materialblack")]
|
||||
MaterialBlack,
|
||||
|
||||
[Description("metro")]
|
||||
Metro,
|
||||
|
||||
[Description("metroblack")]
|
||||
MetroBlack,
|
||||
|
||||
[Description("nova")]
|
||||
Nova,
|
||||
|
||||
[Description("office365")]
|
||||
Office,
|
||||
|
||||
[Description("rtl")]
|
||||
RTL,
|
||||
|
||||
[Description("silver")]
|
||||
Silver,
|
||||
|
||||
[Description("uniform")]
|
||||
Uniform,
|
||||
}
|
||||
}
|
||||
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