summaryrefslogtreecommitdiff
path: root/golang/pkg/model/system.go
blob: c1e302d6daee44a8a7891c33de94b22c63719574 (plain)
1
2
3
4
5
6
7
8
9
10
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"`
}