page.go 653 B

1234567891011121314151617181920212223
  1. package model
  2. // FollowersListPage is the model for followers list result
  3. type FollowersListPage struct {
  4. TotalCount int `json:"total_count"`
  5. PN int `json:"pn"`
  6. PS int `json:"ps"`
  7. List FollowersList `json:"list"`
  8. Order string `json:"order"`
  9. Sort string `json:"sort"`
  10. }
  11. // FollowingsListPage is the model for followings list result
  12. type FollowingsListPage struct {
  13. TotalCount int `json:"total_count"`
  14. PN int `json:"pn"`
  15. PS int `json:"ps"`
  16. List FollowingsList `json:"list"`
  17. Order string `json:"order"`
  18. Sort string `json:"sort"`
  19. }