SubItem.kt 263 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
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
)