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, ) 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, )