Switch.cs 396 B

123456789101112
  1. using RackPeek.Domain.Resources.Servers;
  2. using RackPeek.Domain.Resources.SubResources;
  3. namespace RackPeek.Domain.Resources.Switches;
  4. public class Switch : Hardware.Hardware, IPortResource {
  5. public const string KindLabel = "Switch";
  6. public string? Model { get; set; }
  7. public bool? Managed { get; set; }
  8. public bool? Poe { get; set; }
  9. public List<Port>? Ports { get; set; }
  10. }