ln.skyscanner/entities/L2Segment.cs

22 lines
413 B
C#
Raw Normal View History

2019-06-28 10:01:30 +02:00
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()
{
}
}
}