2023-06-02 21:41:43 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
|
|
|
|
type PlayerInfo struct {
|
|
|
|
PlayerID uuid.UUID `json:"playerID"`
|
|
|
|
LobbyID uuid.UUID `json:"lobbyID"`
|
2023-06-29 20:20:41 +00:00
|
|
|
Passphrase *string `json:"passphrase,omitempty"`
|
2023-06-02 21:41:43 +00:00
|
|
|
}
|