| | | 1 | | using System.ComponentModel; |
| | | 2 | | using Spectre.Console.Cli; |
| | | 3 | | |
| | | 4 | | namespace Orchestrator.Commands.Utility.UploadTransfers; |
| | | 5 | | |
| | | 6 | | public class UploadTransfersSettings : CommandSettings |
| | | 7 | | { |
| | | 8 | | [CommandArgument(0, "<TEAM_ABBREVIATION>")] |
| | | 9 | | [Description("Three-letter team abbreviation (e.g., fcb, bvb, b04)")] |
| | 1 | 10 | | public string TeamAbbreviation { get; set; } = string.Empty; |
| | | 11 | | |
| | | 12 | | [CommandOption("-c|--community-context")] |
| | | 13 | | [Description("The community context to use (e.g., ehonda-test-buli)")] |
| | | 14 | | public required string CommunityContext { get; set; } |
| | | 15 | | |
| | | 16 | | [CommandOption("--competition")] |
| | | 17 | | [Description("Competition identifier (defaults from community context, e.g., fifa-world-cup-2026 for ehonda-dev-wm26 |
| | | 18 | | public string? Competition { get; set; } |
| | | 19 | | |
| | | 20 | | [CommandOption("-v|--verbose")] |
| | | 21 | | [Description("Enable verbose output to show detailed information")] |
| | | 22 | | [DefaultValue(false)] |
| | | 23 | | public bool Verbose { get; set; } |
| | | 24 | | } |