generated from VLADIMIR/template
19 lines
265 B
Go
19 lines
265 B
Go
package repos
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Game struct {
|
|
ID int
|
|
Name string
|
|
Description string
|
|
StartAt time.Time
|
|
Status string
|
|
ScenarioId int
|
|
Scenario *Scenario
|
|
Teams []*Team
|
|
StartedAt *time.Time
|
|
EndedAt *time.Time
|
|
}
|