Change Skin -> Theme

To better align with commonly used terminology in industry renamed all references from Skin -> Theme.
This commit is contained in:
Mitchel Sellers
2019-05-12 23:38:58 -05:00
parent 54b769381b
commit f4aa88a529
47 changed files with 336 additions and 334 deletions

View File

@ -10,7 +10,7 @@ namespace Oqtane.Models
public string Name { get; set; }
public string Path { get; set; }
public int Order { get; set; }
public string SkinType { get; set; }
public string ThemeType { get; set; }
public string LayoutType { get; set; }
public string Icon { get; set; }
public string Panes { get; set; }

View File

@ -1,8 +1,8 @@
namespace Oqtane.Models
{
public class Skin
public class Theme
{
public string SkinName { get; set; }
public string ThemeName { get; set; }
public string Name { get; set; }
public string Version { get; set; }
public string Owner { get; set; }
@ -10,7 +10,7 @@
public string Contact { get; set; }
public string License { get; set; }
public string Dependencies { get; set; }
public string SkinControls { get; set; }
public string ThemeControls { get; set; }
public string PaneLayouts { get; set; }
public string ContainerControls { get; set; }
public string AssemblyName { get; set; }