Table of Contents

Class PluginInfo

Namespace
SharpConsoleUI.Plugins
Assembly
SharpConsoleUI.dll

Metadata about a plugin

public record PluginInfo : IEquatable<PluginInfo>
Inheritance
PluginInfo
Implements
Inherited Members

Constructors

PluginInfo(string, string, string, string)

Metadata about a plugin

public PluginInfo(string Name, string Version, string Author, string Description)

Parameters

Name string

The plugin name

Version string

The plugin version

Author string

The plugin author

Description string

A description of what the plugin provides

Properties

Author

The plugin author

public string Author { get; init; }

Property Value

string

Description

A description of what the plugin provides

public string Description { get; init; }

Property Value

string

Name

The plugin name

public string Name { get; init; }

Property Value

string

Version

The plugin version

public string Version { get; init; }

Property Value

string