Files
2026-08-04 01:23:01 +07:00

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
}