24 lines
364 B
Java
24 lines
364 B
Java
package com.massivecraft.factions.struct;
|
|
|
|
|
|
public class Placeholder {
|
|
|
|
private String tag;
|
|
private String replace;
|
|
|
|
public Placeholder(String tag, String replace) {
|
|
this.tag = tag;
|
|
this.replace = replace;
|
|
}
|
|
|
|
public String getReplace() {
|
|
return replace;
|
|
}
|
|
|
|
public String getTag() {
|
|
return tag;
|
|
}
|
|
|
|
|
|
}
|