ln.skyscanner/entities/L2Segment.cs

22 lines
413 B
C#

using System;
using System.Collections.Generic;
using ln.types.net;
namespace ln.skyscanner.entities
{
public class L2Segment
{
public Guid ID = Guid.NewGuid();
public String Name;
public Network4 Network;
public String Comment;
public List<PointOfPresence> PoPs { get; } = new List<PointOfPresence>();
public L2Segment()
{
}
}
}