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