2023-04-12 14:45:45 +08:00
|
|
|
package client
|
|
|
|
|
|
|
|
import "gotify-client/pkg/utils/time"
|
|
|
|
|
|
|
|
type GotifyMessage struct {
|
2024-04-21 00:31:40 +08:00
|
|
|
Id int `json:"id"`
|
|
|
|
Appid int `json:"appid"`
|
|
|
|
Message string `json:"message"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Priority int `json:"priority"`
|
|
|
|
Extras map[string]any `json:"extras"`
|
|
|
|
Date time.Time `json:"date"`
|
2023-04-12 14:45:45 +08:00
|
|
|
}
|