using RackPeek.Domain.Resources.Servers; using RackPeek.Domain.Resources.SubResources; namespace RackPeek.Domain.Resources.Desktops; public class Desktop : Hardware.Hardware, ICpuResource, IDriveResource, IGpuResource, IPortResource { public const string KindLabel = "Desktop"; public Ram? Ram { get; set; } public string? Model { get; set; } public List? Cpus { get; set; } public List? Drives { get; set; } public List? Gpus { get; set; } public List? Ports { get; set; } }