15 lines
338 B
Go
15 lines
338 B
Go
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"`
|
|
}
|