AlttdGriefPrevention/src/me/ryanhamshire/GriefPrevention/IpBanInfo.java

18 lines
389 B
Java
Raw Normal View History

2012-05-31 02:16:46 +00:00
package me.ryanhamshire.GriefPrevention;
import java.net.InetAddress;
public class IpBanInfo
{
InetAddress address;
long expirationTimestamp;
String bannedAccountName;
IpBanInfo(InetAddress address, long expirationTimestamp, String bannedAccountName)
{
this.address = address;
this.expirationTimestamp = expirationTimestamp;
this.bannedAccountName = bannedAccountName;
}
}