package http.vo /** * info * * @author ReiChin_ */ class CommonRowsResponse<T> : CommonResponse() { var rows: List<T>? = null var total: Int = 0 }