ln.skyscanner/entities/Router.cs

37 lines
769 B
C#
Raw Normal View History

2019-03-11 09:00:07 +01:00
// /**
2019-03-13 08:20:53 +01:00
// * File: Router.cs
2019-03-11 09:00:07 +01:00
// * 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;
2019-03-13 08:20:53 +01:00
using System.Collections.Generic;
using ln.types;
2019-03-11 09:00:07 +01:00
namespace ln.skyscanner.entities
{
public class NetworkInterface
{
2019-03-13 08:20:53 +01:00
public Node Node;
public string Name;
public List<CIDR> IPs = new List<CIDR>();
public NetworkInterface()
{ }
2019-03-11 09:00:07 +01:00
public NetworkInterface(Node node)
{
Node = node;
}
2019-03-13 08:20:53 +01:00
public NetworkInterface(Node node,String name)
{
Node = node;
Name = name;
}
2019-03-11 09:00:07 +01:00
}
2019-03-13 08:20:53 +01:00
2019-03-11 09:00:07 +01:00
}