summaryrefslogtreecommitdiffhomepage
path: root/models.go
diff options
context:
space:
mode:
Diffstat (limited to 'models.go')
-rw-r--r--models.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/models.go b/models.go
index 95c30c8..d79850b 100644
--- a/models.go
+++ b/models.go
@@ -14,6 +14,8 @@ type Team []uint32
type Battle struct {
Id string `json:"-"`
LastModified time.Time `json:"-"`
+ StartTime time.Time `json:"started_at"`
+ EndTime time.Time `json:"ended_at"`
Teams [2]Team `json:"teams"`
Killmails []Killmail `json:"killmails"`
Name string `json:"name"`
@@ -28,6 +30,7 @@ type EsiKillmail struct {
Z float64 `json:"z"`
} `json:"position"`
} `json:"victim"`
+ Time time.Time `json:"killmail_time"`
}
type EsiUniverseSystem struct {