gotify-client/internal/client/gotify.go

14 lines
346 B
Go

package client
import "gotify-client/pkg/utils/time"
type GotifyMessage struct {
Id int `json:"id"`
Appid int `json:"appid"`
Message string `json:"message"`
Title string `json:"title"`
Priority int `json:"priority"`
Extras interface{} `json:"extras"`
Date time.Time `json:"date"`
}