SwitchCommands.cs 202 B

12345678
  1. using Spectre.Console.Cli;
  2. namespace Shared.Rcl.Commands.Switches;
  3. public class SwitchNameSettings : CommandSettings
  4. {
  5. [CommandArgument(0, "<name>")] public string Name { get; set; } = default!;
  6. }