SystemNameSettings.cs 279 B

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