diff options
-rw-r--r-- | util/structs.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/structs.go b/util/structs.go index cee0e3d..c5e78d5 100644 --- a/util/structs.go +++ b/util/structs.go @@ -61,11 +61,11 @@ type Picture struct { } type StatusStatistics struct { - Watching string `json:"watching"` - Completed string `json:"completed"` - OnHold string `json:"on_hold"` - Dropped string `json:"dropped"` - PlanToWatch string `json:"plan_to_watch"` + Watching int `json:"watching"` + Completed int `json:"completed"` + OnHold int `json:"on_hold"` + Dropped int `json:"dropped"` + PlanToWatch int `json:"plan_to_watch"` } type Genre struct { |