9 lines
204 B
Go
9 lines
204 B
Go
package model
|
|
|
|
type Pagination struct {
|
|
Pages int64 `json:"pages"`
|
|
CurrentPage int64 `json:"current_page"`
|
|
ItemsPerPage int64 `json:"items_per_page"`
|
|
TotalItems int64 `json:"total_items"`
|
|
}
|