mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
10 lines
226 B
Go
10 lines
226 B
Go
package jpush
|
|
|
|
// Message .
|
|
type Message struct {
|
|
Title string `json:"title"`
|
|
ContentType string `json:"content_type"`
|
|
MsgContent string `json:"msg_content"`
|
|
Extras interface{} `json:"extras"`
|
|
}
|