diff options
Diffstat (limited to 'models.go')
-rw-r--r-- | models.go | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -16,4 +16,20 @@ type Battle struct { LastModified time.Time `json:"-"` Teams [2]Team `json:"teams"` Killmails []Killmail `json:"killmails"` + Name string `json:"name"` +} + +type EsiKillmail struct { + SolarSystemId int32 `json:"solar_system_id"` + Victim struct { + Position struct { + X float64 `json:"x"` + Y float64 `json:"y"` + Z float64 `json:"z"` + } `json:"position"` + } `json:"victim"` +} + +type EsiUniverseSystem struct { + Name string `json:"name"` } |