blob: 49d7e662f49d3791f4da00973ae7573b82e0e269 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package at.hannibal2.skyhanni.utils.jsonobjects;
import com.google.gson.annotations.Expose;
import java.util.Map;
public class BingoRanksJson {
@Expose
public Map<String, Integer> ranks;
}
|