namespace Spectre.Console.Tests.Data; public sealed class ArgumentOrderSettings : CommandSettings { [CommandArgument(0, "[QUX]")] public int Qux { get; set; } [CommandArgument(3, "")] public int Corgi { get; set; } [CommandArgument(1, "")] public int Bar { get; set; } [CommandArgument(2, "")] public int Baz { get; set; } [CommandArgument(0, "")] public int Foo { get; set; } }