10 lines
227 B
Go
10 lines
227 B
Go
package api
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type PlayerInfo struct {
|
|
PlayerID *uuid.UUID `json:"playerID,omitempty"`
|
|
LobbyID *uuid.UUID `json:"lobbyID,omitempty"`
|
|
Passphrase *string `json:"passphrase,omitempty"`
|
|
}
|