craban/server/model/game.go

8 lines
124 B
Go
Raw Normal View History

2021-09-11 19:50:34 +01:00
package model
type Game struct {
2021-09-13 14:21:37 +01:00
ID int `json:"id"`
UserID int `json:"user_id"`
Name string `json:"name"`
2021-09-11 19:50:34 +01:00
}