blob: 078b1f6ad537cd944c0ddcda9bc2997571ee377b (
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 com.google.gson.annotations.Expose;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class ModGuiSwitcherJson {
@Expose
public Map<String, Mod> mods = new HashMap<>();
public static class Mod {
@Expose
public List<String> description = new ArrayList<>();
@Expose
public String command = "";
@Expose
public List<String> guiPath = new ArrayList<>();
}
}
|