riku
2025-10-17 fbae5f3ea74727ccadc48314a864a1ea0099a945
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package cn.flightfeather.thirdappmodule.module.task
 
import android.arch.lifecycle.MutableLiveData
import android.arch.lifecycle.ViewModel
import cn.flightfeather.thirdappmodule.bean.entity.Scense
 
/**
 * @author riku
 * Date: 2019/5/16
 */
class NewTopTaskViewModel : ViewModel() {
 
    val lastSceneList = MutableLiveData<ArrayList<Scense>>()
 
    val newSceneList = MutableLiveData<ArrayList<Scense>>()
 
    /**
     * 获取上一次任务的所有场景
     */
    fun getLastSceneList() {
 
    }
 
    /**
     * 获取新增的可用场景
     */
    fun getNewSceneList() {
 
    }
 
}