LaptopCommands.cs 202 B

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