mchess-server/api/player_info.go

9 lines
177 B
Go
Raw 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"`
Passphrase *string `json:"passphrase,omitempty"`
}