public CraftProfileBanEntry(GameProfile profile, UserListBansEntry entry, UserListBans list) { this.list = list; this.profile = profile; this.created = entry.getCreated() != null ? new Date(entry.getCreated().getTime()) : null; this.source = entry.getSource(); this.expiration = entry.getBanEndDate() != null ? new Date(entry.getBanEndDate().getTime()) : null; this.reason = entry.getBanReason(); }
public CraftProfileBanList(UserListBans list){ this.list = list; }