mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 16:01:16 +00:00
15 lines
307 B
Go
15 lines
307 B
Go
package models
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type Pagination struct {
|
|
Total *int64 `json:"total"`
|
|
NextCursor *uuid.UUID `json:"next_cursor"`
|
|
HasMore bool `json:"has_more"`
|
|
}
|
|
|
|
type CPagination struct {
|
|
NextCursor *string `json:"next_cursor"`
|
|
HasMore bool `json:"has_more"`
|
|
}
|