| | | 1 | | using System.ComponentModel; |
| | | 2 | | using Spectre.Console.Cli; |
| | | 3 | | |
| | | 4 | | namespace Orchestrator.Commands.Observability.ContextChanges; |
| | | 5 | | |
| | | 6 | | /// <summary> |
| | | 7 | | /// Settings for the context-changes command. |
| | | 8 | | /// </summary> |
| | | 9 | | public class ContextChangesSettings : CommandSettings |
| | | 10 | | { |
| | | 11 | | [CommandOption("-c|--community-context <COMMUNITY_CONTEXT>")] |
| | | 12 | | [Description("The community context to filter by (required)")] |
| | 0 | 13 | | public required string CommunityContext { get; set; } = string.Empty; |
| | | 14 | | |
| | | 15 | | [CommandOption("-v|--verbose")] |
| | | 16 | | [Description("Enable verbose output")] |
| | 0 | 17 | | public bool Verbose { get; set; } = false; |
| | | 18 | | |
| | | 19 | | [CommandOption("-s|--seed <SEED>")] |
| | | 20 | | [Description("Random seed for document selection (optional)")] |
| | 0 | 21 | | public int? Seed { get; set; } |
| | | 22 | | |
| | | 23 | | [CommandOption("-n|--count <COUNT>")] |
| | | 24 | | [Description("Number of documents to show (default: 10)")] |
| | | 25 | | [DefaultValue(10)] |
| | 0 | 26 | | public int Count { get; set; } = 10; |
| | | 27 | | } |