mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
13 lines
172 B
Go
13 lines
172 B
Go
package notification
|
|
|
|
// Payload data of message.
|
|
type Payload struct {
|
|
Title string
|
|
Body string
|
|
Icon string
|
|
Sound string
|
|
Badge string
|
|
Tag string
|
|
Color string
|
|
}
|