blob: 02079ed30bbfc9d373884902352d0feda7dce92e (
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.features.fishing.trophy.TrophyRarity
import com.google.gson.annotations.Expose
import com.google.gson.annotations.SerializedName
data class TrophyFishJson(
@Expose @SerializedName("trophy_fish") val trophyFish: Map<String, TrophyFishInfo>,
)
data class TrophyFishInfo(
@Expose val displayName: String,
@Expose val description: String,
@Expose val rate: Int?,
@Expose val fillet: Map<TrophyRarity, Int>,
)
|