Class ExtensionInfo
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
NamestringThe name of the extension.
DescriptionstringThe description of the extension.
AuthorstringThe author of the extension.
VersionstringThe version of the extension.
Properties
Author
The author of the extension.
public string? Author { get; init; }
Property Value
Description
The description of the extension.
public string? Description { get; init; }
Property Value
Name
The name of the extension.
public string? Name { get; init; }
Property Value
Version
The version of the extension.
public string? Version { get; init; }