Table of Contents

Class ExtensionInfo

Namespace
Xabbo.Extension
Assembly
Xabbo.Common.dll

Defines information about an extension.

public sealed record ExtensionInfo : IEquatable<ExtensionInfo>
Inheritance
ExtensionInfo
Implements

Constructors

ExtensionInfo(string?, string?, string?, string?)

Defines information about an extension.

public ExtensionInfo(string? Name = null, string? Description = null, string? Author = null, string? Version = null)

Parameters

Name string

The name of the extension.

Description string

The description of the extension.

Author string

The author of the extension.

Version string

The version of the extension.

Properties

Author

The author of the extension.

public string? Author { get; init; }

Property Value

string

Description

The description of the extension.

public string? Description { get; init; }

Property Value

string

Name

The name of the extension.

public string? Name { get; init; }

Property Value

string

Version

The version of the extension.

public string? Version { get; init; }

Property Value

string