aditya.siregar 09c9a4d59d update
2025-04-10 11:21:08 +07:00

8 lines
128 B
Go

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