ln.skyscanner/entities/Node.cs

31 lines
539 B
C#

// /**
// * File: IPNode.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;
namespace ln.skyscanner.entities
{
public class Node
{
public Guid ID { get; private set; }
public Node()
{
ID = Guid.NewGuid();
}
public Node(Guid guid)
{
ID = guid;
}
}
}