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