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