AccessCommands.cs 289 B

12345678910
  1. using System.ComponentModel;
  2. using Spectre.Console.Cli;
  3. namespace Shared.Rcl.Commands.AccessPoints;
  4. public class AccessPointNameSettings : CommandSettings {
  5. [CommandArgument(0, "<name>")]
  6. [Description("The access point name.")]
  7. public string Name { get; set; } = default!;
  8. }