generated from VLADIMIR/template
add games operations
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user