package com.yidianling.consultant.model.bean
import com.google.gson.annotations.SerializedName
data class SubItem(
@field:SerializedName("value")
var value: String? = null,
@field:SerializedName("key")
var key: String? = null
)