SystemNameSettings.cs 280 B

12345678910
  1. using System.ComponentModel;
  2. using Spectre.Console.Cli;
  3. namespace Shared.Rcl.Commands.Systems;
  4. public class SystemNameSettings : CommandSettings {
  5. [CommandArgument(0, "<name>")]
  6. [Description("The name of the system.")]
  7. public string Name { get; set; } = default!;
  8. }