mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 12:18:02 +03:00
7 lines
201 B
Go
7 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"`
|
|
}
|