29 lines
862 B
C#
29 lines
862 B
C#
namespace ZelWiki.Library
|
|
{
|
|
public class Theme
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public Theme()
|
|
{
|
|
Name = string.Empty;
|
|
DelimitedFiles = string.Empty;
|
|
ClassNavBar = string.Empty;
|
|
ClassNavLink = string.Empty;
|
|
ClassDropdown = string.Empty;
|
|
ClassBranding = string.Empty;
|
|
EditorTheme = string.Empty;
|
|
Files = new();
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
public string DelimitedFiles { get; set; }
|
|
public string ClassNavBar { get; set; }
|
|
public string ClassNavLink { get; set; }
|
|
public string ClassDropdown { get; set; }
|
|
public string ClassBranding { get; set; }
|
|
public string EditorTheme { get; set; }
|
|
public List<string> Files { get; set; }
|
|
}
|
|
} |