package common // JoinParams are the parameters send by the client to join a draft. // The parameters are sent after upgrading the http connection to the `/join` endpoint to a websocket. type JoinParams struct { // Table identifies the draft to join. Table string // Name is the name of the joining player. Name string // Desc specifies the draft description if joining a new draft. Desc string // NPlayers specifies the number of players in the draft. NPlayers int }