DesktopCommands.cs 203 B

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