mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-17 01:12:50 +08:00
10 lines
217 B
C#
10 lines
217 B
C#
namespace Spectre.Console.Tests.Data;
|
|
|
|
public sealed class InvalidCommand : Command<InvalidSettings>
|
|
{
|
|
public override int Execute(CommandContext context, InvalidSettings settings)
|
|
{
|
|
return 0;
|
|
}
|
|
}
|