2022-03-07 04:18:51 +03:00
|
|
|
package controllers
|
|
|
|
|
|
|
|
// PaginatedResponse is a structure for returning a total count with results.
|
|
|
|
type PaginatedResponse struct {
|
|
|
|
Results interface{} `json:"results"`
|
2023-05-30 20:31:43 +03:00
|
|
|
Total int `json:"total"`
|
2022-03-07 04:18:51 +03:00
|
|
|
}
|