diff options
Diffstat (limited to '')
-rw-r--r-- | golang/pkg/model/waypoint.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/golang/pkg/model/waypoint.go b/golang/pkg/model/waypoint.go new file mode 100644 index 0000000..7b71e6a --- /dev/null +++ b/golang/pkg/model/waypoint.go @@ -0,0 +1,16 @@ +package model + +type Waypoint struct { + Chart *Chart `json:"chart"` + Factions []string `json:"factions"` + IsUnderConstruction bool `json:"isUnderConstruction"` + Modifiers []Common `json:"modifiers"` + //orbitals: Array<{symbol: string;}>; + //orbits: string; + Symbol string `json:"symbol"` + SystemSymbol string `json:"systemSymbol"` + Traits []Common `json:"traits"` + Type string `json:"type"` + X int `json:"x"` + Y int `json:"y"` +} |