common.go 201 B

123456789101112131415
  1. package response
  2. type StatsItem struct {
  3. Type int
  4. Name string
  5. Count int64
  6. }
  7. type StatsTotal struct {
  8. Name string
  9. Count int64
  10. }
  11. type CommonStats struct {
  12. Total StatsTotal
  13. Items []StatsItem
  14. }