diff options
Diffstat (limited to 'backend/models/models.go')
| -rw-r--r-- | backend/models/models.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/backend/models/models.go b/backend/models/models.go index 35929c1..e5d92fb 100644 --- a/backend/models/models.go +++ b/backend/models/models.go | |||
| @@ -64,12 +64,13 @@ type MapHistory struct { | |||
| 64 | } | 64 | } |
| 65 | 65 | ||
| 66 | type MapRoute struct { | 66 | type MapRoute struct { |
| 67 | RouteID int `json:"route_id"` | 67 | RouteID int `json:"route_id"` |
| 68 | Category Category `json:"category"` | 68 | Category Category `json:"category"` |
| 69 | History MapHistory `json:"history"` | 69 | History MapHistory `json:"history"` |
| 70 | Rating float32 `json:"rating"` | 70 | Rating float32 `json:"rating"` |
| 71 | Description string `json:"description"` | 71 | CompletionCount int `json:"completion_count"` |
| 72 | Showcase string `json:"showcase"` | 72 | Description string `json:"description"` |
| 73 | Showcase string `json:"showcase"` | ||
| 73 | } | 74 | } |
| 74 | 75 | ||
| 75 | type MapRecords struct { | 76 | type MapRecords struct { |