blob: 65384848fbe14de4410b1d6852774e5e6e6400e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package at.hannibal2.skyhanni.data.jsonobjects.other
import com.google.gson.annotations.Expose
import com.google.gson.annotations.SerializedName
data class SkyblockItemsDataJson(
@Expose val items: List<SkyblockItemData>,
)
data class SkyblockItemData(
@Expose val id: String?,
@Expose @SerializedName("npc_sell_price") val npcPrice: Double?,
@Expose @SerializedName("motes_sell_price") val motesPrice: Double?,
)
|