mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
9 lines
189 B
Go
9 lines
189 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// WechatContact Wechat Contact
|
||
|
|
type WechatContact struct {
|
||
|
|
EnglishName string `json:"english_name"`
|
||
|
|
UserID string `json:"userid"`
|
||
|
|
Name string `json:"name"`
|
||
|
|
}
|