Files
evening_detective_server/internal/services/game_service/game.go
T
2026-08-04 01:23:01 +07:00

19 lines
337 B
Go

package game_service
import (
"evening_detective_server/internal/services/scenarios_service"
"time"
)
type Game struct {
ID int
Name string
Description string
StartAt time.Time
Status string
Scenario *scenarios_service.Scenario
Teams []*Team
StartedAt *time.Time
EndedAt *time.Time
}