mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2026-01-02 01:03:32 +01:00
8 lines
170 B
C#
8 lines
170 B
C#
namespace Spectre.Console.Tests.Data;
|
|
|
|
public class ArgumentVectorSettings : CommandSettings
|
|
{
|
|
[CommandArgument(0, "<Foos>")]
|
|
public string[] Foo { get; set; }
|
|
}
|