mchess-server/api/player_info.go

10 lines
227 B
Go
Raw Permalink Normal View History

package api
import "github.com/google/uuid"
type PlayerInfo struct {
2023-06-29 23:50:04 +00:00
PlayerID *uuid.UUID `json:"playerID,omitempty"`
LobbyID *uuid.UUID `json:"lobbyID,omitempty"`
Passphrase *string `json:"passphrase,omitempty"`
}