playerinfo.go 239 B

1234567891011
  1. //@File playerinfo.go
  2. //@Time 2022/05/19
  3. //@Author #Suyghur,
  4. package model
  5. type PlayerWaitingInfo struct {
  6. PlayerId string `json:"player_id"`
  7. GameId string `json:"game_id"`
  8. EnqueueTime int64 `json:"enqueue_time"`
  9. }