ln.provider.netwatch/entities/FlaggedIP.cs

28 lines
687 B
C#

// /**
// * File: IPList.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.net;
namespace ln.provider.netwatch.entities
{
public class FlaggedIP
{
public IPv6 IPAddress { get; set; }
public IPFlags Flags { get; set; }
public FlaggedIP() : this(IPv6.ANY, 0) { }
public FlaggedIP(IPv6 ip) : this(ip, 0) { }
public FlaggedIP(IPv6 ip, IPFlags flags)
{
IPAddress = ip;
Flags = flags;
}
}
}