mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 17:02:51 +08:00
9 lines
208 B
C#
9 lines
208 B
C#
namespace Spectre.Console.Tests.Data;
|
|
|
|
public class BarCommandSettings : FooCommandSettings
|
|
{
|
|
[CommandArgument(0, "<CORGI>")]
|
|
[Description("The corgi value.")]
|
|
public string Corgi { get; set; }
|
|
}
|