summaryrefslogtreecommitdiff
path: root/golang/pkg/model/system.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--golang/pkg/model/system.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/golang/pkg/model/system.go b/golang/pkg/model/system.go
new file mode 100644
index 0000000..c1e302d
--- /dev/null
+++ b/golang/pkg/model/system.go
@@ -0,0 +1,11 @@
+package model
+
+type System struct {
+ Factions []Faction `json:"factions"`
+ SectorSymbol string `json:"sectorSymbol"`
+ Symbol string `json:"symbol"`
+ Type string `json:"type"`
+ Waypoints []Waypoint `json:"waypoints"`
+ X int `json:"x"`
+ Y int `json:"y"`
+}