blob: 4eba238f64d0df95181a1b6220e23c46459f5497 (
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.Map;
import java.util.UUID;
public class FriendsJson {
@Expose
public Map<UUID, PlayerFriends> players;
public static class PlayerFriends {
@Expose
public Map<UUID, Friend> friends;
public static class Friend {
@Expose
public String name;
@Expose
public boolean bestFriend;
}
}
}
|