Connection.cs 419 B

1234567891011121314151617
  1. namespace RackPeek.Domain.Resources.Connections;
  2. public class Connection {
  3. public PortReference A { get; set; } = null!;
  4. public PortReference B { get; set; } = null!;
  5. public string? Label { get; set; }
  6. public string? Notes { get; set; }
  7. }
  8. public class PortReference {
  9. public string Resource { get; set; } = null!;
  10. public int PortGroup { get; set; }
  11. public int PortIndex { get; set; }
  12. }