This commit is contained in:
a 2022-04-13 03:03:35 -05:00
parent 3f38862df1
commit 4a460e1dce
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package gamer
import "time"
type Gamer struct {
UniqueName string `json:"unique_name"`
DisplayName string `json:"display_name"`
LastSeen time.Time `json:"last_seen"`
}

View File

@ -0,0 +1,17 @@
package record
import "time"
type Session struct {
Gamer string `json:"gamer"`
SessionId string `json:"session_id"`
TimeStart time.Time `json:"time_start"`
TimeEnd time.Time `json:"time_end"`
Completed bool `json:"completed"`
}
type Record struct {
}