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
Name
stringThe name of the extension.
Description
stringThe description of the extension.
Author
stringThe author of the extension.
Version
stringThe 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; }