com.tianyisoft.database.util.Meta.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of querybuilder Show documentation
Show all versions of querybuilder Show documentation
A query builder from laravel
The newest version!
package com.tianyisoft.database.util
class Meta: java.io.Serializable {
companion object {
private const val serialVersionUID: Long = 198912190703L
}
var current: Int? = null
var pages: Int? = null
var size: Int? = null
var total: Long? = null
}