playerinfo.go 490 B

1234567891011121314151617181920
  1. //@File playerinfo.go
  2. //@Time 2022/05/19
  3. //@Author #Suyghur,
  4. package model
  5. type PlayerInfo struct {
  6. PlayerId string `json:"player_id"`
  7. GameId string `json:"game_id"`
  8. IsVip int64 `json:"is_vip"`
  9. CsId string `json:"cs_id"`
  10. ConnectTs int64 `json:"connect_ts"`
  11. LastChatTs int64 `json:"last_chat_ts"`
  12. }
  13. type PlayerWaitingInfo struct {
  14. PlayerId string `json:"player_id"`
  15. GameId string `json:"game_id"`
  16. EnqueueTime int64 `json:"enqueue_time"`
  17. }