using System.ComponentModel; using Spectre.Console.Cli; namespace RackPeek.Commands.AccessPoints; public class AccessPointNameSettings : CommandSettings { [CommandArgument(0, "")] [Description("The access point name.")] public string Name { get; set; } = default!; }