ln.skyscanner/entities/PointOfPresence.cs

42 lines
927 B
C#

// /**
// * File: PointOfPresence.cs
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using System;
using ln.types.odb;
using System.Collections.Generic;
using System.Linq;
using ln.types;
namespace ln.skyscanner.entities
{
public class PointOfPresence
{
public Guid ID = Guid.NewGuid();
public String Name { get; set; }
public String ForeignName { get; set; }
public GeoLocation GeoLocation { get; set; }
public DateTime Created { get; private set; } = DateTime.Now;
public IEnumerable<L2Segment> L2Segments
{
get
{
throw new NotImplementedException();
}
}
public PointOfPresence()
{
}
}
}