owncast/webserver/responses/pagination.go

7 lines
205 B
Go

package responses
// PaginatedResponse is a structure for returning a total count with results.
type PaginatedResponse struct {
Results interface{} `json:"results"`
Total int `json:"total"`
}