chirpnest/def.go

10 lines
242 B
Go
Raw Normal View History

2019-05-06 04:54:24 +02:00
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"`
}