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