Desktop.cs 330 B

123456789101112
  1. namespace RackPeek.Domain.Resources.Hardware.Models;
  2. public class Desktop : Hardware
  3. {
  4. public List<Cpu>? Cpus { get; set; }
  5. public Ram? Ram { get; set; }
  6. public List<Drive>? Drives { get; set; }
  7. public List<Nic>? Nics { get; set; }
  8. public List<Gpu>? Gpus { get; set; }
  9. public string Model { get; set; }
  10. }