Switch.cs 404 B

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