1package game
2
3type Lobby struct {
4	LobbyCode string  `json:"LobbyCode"`
5	Region    Region  `json:"Region"`
6	PlayMap   PlayMap `json:"Map"`
7}
8