aditya.siregar 67f1dbc850 init project
2024-05-28 14:14:55 +07:00

8 lines
133 B
Go

package response
type PagingMeta struct {
Page int `json:"page"`
Limit int `json:"limit"`
Total int64 `json:"total_data"`
}