blob: b8d0d7c28d1da44bb0834f4a739e49c13e96b86a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package at.hannibal2.skyhanni.data.jsonobjects.repo
import com.google.gson.annotations.Expose
import com.google.gson.annotations.SerializedName
data class HideNotClickableItemsJson(
@Expose @SerializedName("hide_npc_sell") val hideNpcSell: MultiFilterJson,
@Expose @SerializedName("hide_in_storage") val hideInStorage: MultiFilterJson,
@Expose @SerializedName("hide_player_trade") val hidePlayerTrade: MultiFilterJson,
@Expose @SerializedName("not_auctionable") val notAuctionable: MultiFilterJson,
@Expose val salvage: SalvageFilter,
)
data class SalvageFilter(
@Expose val armor: List<String>,
@Expose val items: List<String>,
)
|