6 lines
98 B
Go
6 lines
98 B
Go
package models
|
|
|
|
type Pagination struct {
|
|
Page int32 `json:"page"`
|
|
Total int32 `json:"total"`
|
|
}
|