2021-12-22 08:51:17 -05:00

13 lines
284 B
C#

using Spectre.Console.Cli;
namespace Spectre.Console.Tests.Data
{
public class OptionVectorSettings : CommandSettings
{
[CommandOption("--foo")]
public string[] Foo { get; set; }
[CommandOption("--bar")]
public int[] Bar { get; set; }
}
}