wip
This commit is contained in:
parent
3f38862df1
commit
4a460e1dce
|
@ -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"`
|
||||
}
|
|
@ -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 {
|
||||
}
|
Loading…
Reference in New Issue