using System.ComponentModel; using Spectre.Console.Cli; namespace Shared.Rcl.Commands.Systems; public class SystemNameSettings : CommandSettings { [CommandArgument(0, "")] [Description("The name of the system.")] public string Name { get; set; } = default!; }