| 12345678910111213 |
- using RackPeek.Domain.Resources.Hardware.Servers;
- using RackPeek.Domain.Resources.SubResources;
- namespace RackPeek.Domain.Resources.Hardware.Switches;
- public class Switch : Hardware, IPortResource
- {
- public const string KindLabel = "Switch";
- public string? Model { get; set; }
- public bool? Managed { get; set; }
- public bool? Poe { get; set; }
- public List<Port>? Ports { get; set; }
- }
|