8 lines
128 B
Go
8 lines
128 B
Go
package response
|
|
|
|
type PagingMeta struct {
|
|
Page int `json:"page"`
|
|
Limit int `json:"limit"`
|
|
Total int64 `json:"total"`
|
|
}
|