blob: c2662a02bbf982f8854d0e17dcdbfd257ba5522c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package at.hannibal2.skyhanni.data.jsonobjects.repo
import at.hannibal2.skyhanni.utils.LorenzVec
import com.google.gson.annotations.Expose
import com.google.gson.annotations.SerializedName
data class LocationFixJson(
@Expose val locationFixes: Map<String, LocationFix>,
)
data class LocationFix(
@Expose val a: LorenzVec,
@Expose val b: LorenzVec,
@Expose @SerializedName("island_name") val islandName: String,
@Expose @SerializedName("real_location") val realLocation: String,
)
|