You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
332 B
13 lines
332 B
package model |
|
|
|
// BAP for wechat msg. |
|
type BAP struct { |
|
UserName string `json:"username"` |
|
Title string `json:"title"` |
|
Content string `json:"content"` |
|
URL string `json:"url"` |
|
Ty string `json:"type"` |
|
Token string `json:"token"` |
|
Signature string `json:"signature"` |
|
TimeStamp int64 `json:"timestamp"` |
|
}
|
|
|