Class PluginTheme
- Namespace
- SharpConsoleUI.Plugins
- Assembly
- SharpConsoleUI.dll
A theme contribution from a plugin
public record PluginTheme : IEquatable<PluginTheme>
- Inheritance
-
PluginTheme
- Implements
- Inherited Members
Constructors
PluginTheme(string, string, ITheme)
A theme contribution from a plugin
public PluginTheme(string Name, string Description, ITheme Theme)
Parameters
NamestringThe unique name for the theme
DescriptionstringA description of the theme
ThemeIThemeThe theme instance
Properties
Description
A description of the theme
public string Description { get; init; }
Property Value
Name
The unique name for the theme
public string Name { get; init; }
Property Value
Theme
The theme instance
public ITheme Theme { get; init; }