using System.Net;
namespace EmbedIO.Security
{
///
/// Contains information about the ban of an IP address.
///
public class BanInfo
{
///
/// Gets or sets the banned IP address.
///
public IPAddress IPAddress { get; set; }
///
/// Gets or sets the expiration time of the ban.
///
public long ExpiresAt { get; set; }
///
/// Gets or sets a value indicating whether this instance was explicitly banned.
///
public bool IsExplicit { get; set; }
}
}