// /** // * File: Router.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 System.Collections.Generic; using ln.types; namespace ln.skyscanner.entities { public class NetworkInterface { public Node Node; public string Name; public List IPs = new List(); public NetworkInterface() { } public NetworkInterface(Node node) { Node = node; } public NetworkInterface(Node node,String name) { Node = node; Name = name; } } }