LaptopCommands.cs 199 B

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