Files
ZelWiki/ZelWiki.Library/Theme.cs
2025-02-23 18:47:21 +08:00

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; }
}
}