14 lines
275 B
Go
14 lines
275 B
Go
package baseinfo
|
|
|
|
type JoinGroupMsg struct {
|
|
JoinGroupInfo JoinGroupInfo `xml:"appmsg"`
|
|
}
|
|
|
|
type JoinGroupInfo struct {
|
|
Url string `xml:"url"`
|
|
Thumburl string `xml:"thumburl"`
|
|
Type uint32 `xml:"type"`
|
|
Title string `xml:"title"`
|
|
Des string `xml:"des"`
|
|
}
|