Missing Clans ban cache class (to do with the commit previously by me)

This commit is contained in:
Ben 2016-05-01 10:11:17 +01:00
parent 189f9ad524
commit 9d97ea8d1e
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
package mineplex.game.clans.clans.ban;
/**
* Stores the data provided through the /cban (Clans ban) command for use further in the plugin.
*/
public class ClansBanCache
{
private String _victim;
private String _reason;
public ClansBanCache(String victim, String reason)
{
_victim = victim;
_reason = reason;
}
public String getVictim()
{
return _victim;
}
public String getReason()
{
return _reason;
}
}