11 lines
252 B
Go
Raw Normal View History

2019-06-03 09:32:43 +00:00
package arn
// PushNotification represents a push notification.
type PushNotification struct {
Title string `json:"title"`
Message string `json:"message"`
Icon string `json:"icon"`
Link string `json:"link"`
Type string `json:"type"`
}