AccessCommands.cs 288 B

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