10 lines
242 B
Go
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"`
|
||
|
}
|