AlttdGriefPrevention/src/me/ryanhamshire/GriefPrevention/IpBanInfo.java
Ryan Hamshire afe868de2f 4.2
2012-05-30 19:16:46 -07:00

18 lines
389 B
Java

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;
}
}