7 lines
98 B
Go
7 lines
98 B
Go
|
package model
|
||
|
|
||
|
type NotifyMssage struct {
|
||
|
Type string `json:"type"`
|
||
|
Data string `json:"data"`
|
||
|
}
|