15 lines
379 B
Go
15 lines
379 B
Go
|
package model
|
||
|
|
||
|
// PayloadPushNotification ...
|
||
|
type PayloadPushNotification struct {
|
||
|
User string `json:"user"`
|
||
|
Type string `json:"type"`
|
||
|
TargetId string `json:"targetId"`
|
||
|
IsFromAdmin bool `json:"isFromAdmin"`
|
||
|
Category string `json:"category"`
|
||
|
Options struct {
|
||
|
Title string `json:"title"`
|
||
|
Content string `json:"content"`
|
||
|
} `json:"options"`
|
||
|
}
|