Files
nCovTrack-Backend/models/notify.go
fallen-angle 9e3638885d finish
2022-05-16 19:55:59 +08:00

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"`
}