blob: 6303c16be4fdf561e0878d8f482059327359c158 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package at.hannibal2.skyhanni.utils.jsonobjects;
import at.hannibal2.skyhanni.features.fishing.trophy.TrophyRarity;
import com.google.gson.annotations.Expose;
import java.util.Map;
public class TrophyFishJson {
@Expose
public Map<String, TrophyFishInfo> trophy_fish;
public static class TrophyFishInfo {
@Expose
public String displayName;
@Expose
public String description;
@Expose
public Integer rate;
@Expose
public Map<TrophyRarity, Integer> fillet;
}
}
|