AppLocal.kt 373 Bytes
Newer Older
ydl committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package com.yidianling.user.mine.data

/**
 * author : Zhangwenchao
 * e-mail : zhangwch@yidianling.com
 * time   : 2018/04/26
 */
interface AppLocal {

    // 获取红包时间
    fun getRedPocketTime(): Long

    // 储存红包时间
    fun putRedPocketTime(time: Long)

    // 是否又版本更新
    fun hasUpdate(): Boolean

    fun putUpdate(update: Boolean)

}