ConsultantRam.kt 220 Bytes
Newer Older
1 2 3
package com.yidianling.consultant.data


konghaorui committed
4
import com.yidianling.consultant.bean.Keyworks
5 6 7 8 9 10 11 12

interface ConsultantRam {

    fun getHotSearch(): MutableList<Keyworks>

    fun setHotSearch(hotSearch: MutableList<Keyworks>)

}