aboutsummaryrefslogtreecommitdiff
path: root/backend/models/models.go
diff options
context:
space:
mode:
Diffstat (limited to 'backend/models/models.go')
-rw-r--r--backend/models/models.go13
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
66type MapRoute struct { 66type 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
75type MapRecords struct { 76type MapRecords struct {