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