generated from VLADIMIR/template
17 lines
217 B
Go
17 lines
217 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
|
|
}
|