Advertisement
mo1far

Untitled

Mar 13th, 2025
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.25 KB | None | 0 0
  1. package models
  2.  
  3. type Pagination struct {
  4.     PerPage int `json:"per_page"`
  5.     Total   int `json:"total"`
  6. }
  7.  
  8. type ResponsePages struct {
  9.     Pagination Pagination `json:"pagination"`
  10. }
  11.  
  12. type ResponseEvents struct {
  13.     Events []Event `json:"events"`
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement