DesktopCommands.cs 201 B

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