123123
This commit is contained in:
@@ -2,13 +2,28 @@
|
||||
{
|
||||
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();
|
||||
/// <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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user