Files
nCovTrack-Backend/models/notify.go
2022-05-04 20:06:21 +08:00

10 lines
166 B
Go

package models
import "time"
type BackNotification struct {
Time time.Time `json:"time"`
Kind int `json:"kind"`
Content string `json:"content"`
}