8 lines
201 B
Go
8 lines
201 B
Go
package utils
|
|
|
|
// PaginatedResponse is a structure for returning a total count with results.
|
|
type PaginatedResponse struct {
|
|
Results interface{} `json:"results"`
|
|
Total int `json:"total"`
|
|
}
|