summaryrefslogtreecommitdiffhomepage
path: root/models.go
diff options
context:
space:
mode:
Diffstat (limited to 'models.go')
-rw-r--r--models.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/models.go b/models.go
index 9a0a67f..95c30c8 100644
--- a/models.go
+++ b/models.go
@@ -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"`
}