package cn.flightfeather.thirdapp.module.task
|
|
import android.arch.lifecycle.MutableLiveData
|
import android.arch.lifecycle.ViewModel
|
import cn.flightfeather.thirdapp.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() {
|
|
}
|
|
}
|