chirpnest/def.go
2019-05-06 10:54:24 +08:00

10 lines
242 B
Go

package main
type ChatWarsMessage struct {
SenderUserID64 int64 `json:"sender_user_id"`
Date int32 `json:"date"`
ID64 int64 `json:"id"`
ChatID64 int64 `json:"chat_id"`
Text string `json:"text"`
}