IHomeEvent.kt 244 Bytes
Newer Older
徐健 committed
1 2 3 4 5 6 7 8
package com.yidianling.home.event

interface IHomeEvent {
    /**
     * 冥想更多点击事件
     */
    fun museMoreClick(dataJson: String)

9

徐健 committed
10 11 12 13 14
    /**
     * 冥想item点击事件
     */
    fun museClick(url: String, dataJson: String)
}