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