using System.ComponentModel; using Spectre.Console.Cli; namespace RackPeek.Commands.Laptops.Gpus; public class LaptopGpuRemoveSettings : CommandSettings { [CommandArgument(0, "")] [Description("The Laptop name.")] public string LaptopName { get; set; } = default!; [CommandArgument(1, "")] [Description("The index of the Gpu to remove.")] public int Index { get; set; } }