using System.ComponentModel; using Spectre.Console.Cli; namespace RackPeek.Commands.Desktops.Drive; public class DesktopDriveSetSettings : CommandSettings { [CommandArgument(0, "")] [Description("The desktop name.")] public string DesktopName { get; set; } = default!; [CommandArgument(1, "")] [Description("The drive index to update.")] public int Index { get; set; } [CommandOption("--type")] [Description("The drive type e.g hdd / ssd.")] public string? Type { get; set; } [CommandOption("--size")] [Description("The drive capacity in Gb.")] public int? Size { get; set; } }