16 lines
340 B
Go
16 lines
340 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type BackNotification struct {
|
|
Time time.Time `json:"time"`
|
|
Kind string `json:"kind"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
type SendInfo struct {
|
|
Region []string `json:"region"`
|
|
Channel []int `json:"channel"`
|
|
Notification BackNotification `json:"notification"`
|
|
}
|