mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-06-19 21:38:16 +08:00
Make AsyncCommand
a little more discoverable (#375)
This commit is contained in:
@ -5,6 +5,7 @@ namespace Spectre.Console.Cli
|
||||
/// <summary>
|
||||
/// Base class for a command without settings.
|
||||
/// </summary>
|
||||
/// <seealso cref="AsyncCommand"/>
|
||||
public abstract class Command : ICommand<EmptyCommandSettings>
|
||||
{
|
||||
/// <summary>
|
||||
|
@ -8,6 +8,7 @@ namespace Spectre.Console.Cli
|
||||
/// Base class for a command.
|
||||
/// </summary>
|
||||
/// <typeparam name="TSettings">The settings type.</typeparam>
|
||||
/// <seealso cref="AsyncCommand{TSettings}"/>
|
||||
public abstract class Command<TSettings> : ICommand<TSettings>
|
||||
where TSettings : CommandSettings
|
||||
{
|
||||
|
Reference in New Issue
Block a user