Created
August 18, 2017 16:30
-
-
Save joecks/5ef83ef1e1ce261d090031e162f410f7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data class TasksViewData(val dataLoading : Boolean, | |
val empty: Boolean, | |
@StringRes val currentFilteringLabel : Int, | |
@DrawableRes val noTaskIconRes: Int, | |
@StringRes val noTasksLabel : Int, | |
val tasksAddViewVisible : Boolean, | |
val items: List<Task>, | |
val message: ViewMessage = InvalidMessage) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment