RemoteData

data class RemoteData<T>(val data: List<T> = listOf(), val last_page: Int = 0, val last_row: Int? = null)

Constructors

Link copied to clipboard
constructor(data: List<T> = listOf(), last_page: Int = 0, last_row: Int? = null)

Properties

Link copied to clipboard
val data: List<T>
Link copied to clipboard
val last_page: Int = 0
Link copied to clipboard
val last_row: Int? = null