Files
warmbly/internal/models/pagination.go
T
2026-01-17 14:11:14 +00:00

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"`
}