Table of Contents

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

Name string

The unique name for the theme

Description string

A description of the theme

Theme ITheme

The theme instance

Properties

Description

A description of the theme

public string Description { get; init; }

Property Value

string

Name

The unique name for the theme

public string Name { get; init; }

Property Value

string

Theme

The theme instance

public ITheme Theme { get; init; }

Property Value

ITheme