2023-06-02 21:41:43 +00:00
|
|
|
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"`
|
2023-06-02 21:41:43 +00:00
|
|
|
}
|