gocwexp/def.go

15 lines
338 B
Go
Raw Normal View History

2019-12-29 03:45:12 +01:00
package main
import (
"time"
)
type ChatWarsMessage struct {
TGUserID64 int64 `json:"tg_user_id"`
TGSenderUserID64 int64 `json:"tg_sender_user_id"`
Date time.Time `json:"date"`
ID64 int64 `json:"id"`
ChatID64 int64 `json:"chat_id"`
Text string `json:"text"`
}