13 lines
265 B
Kotlin
13 lines
265 B
Kotlin
|
package com.android.grape.pad
|
||
|
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName
|
||
|
|
||
|
data class Pad(
|
||
|
var page: Int = 0,
|
||
|
var pageData: List<PageData> = listOf(),
|
||
|
var rows: Int = 0,
|
||
|
var size: Int = 0,
|
||
|
var total: Int = 0,
|
||
|
var totalPage: Int = 0
|
||
|
)
|