Files
evening_detective_server/internal/services/game_service/team.go
T
2026-07-28 20:38:03 +07:00

13 lines
249 B
Go

package game_service
import "evening_detective_server/internal/modules/storytelling"
type Team struct {
ID int
Name string
Status string
Password string
ActionsCount int
Applications []*storytelling.Application
}