res.go 222 Bytes
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4 5 6 7 8 9 10 11 12 13
package mic_cv

//麦位表情
type CvMicEmoji struct {
	//Id
	Id uint64 `json:"id"`
	//名字
	Name string `json:"name"`
	//图片地址
	IconUrl string `json:"iconUrl"`
	//特效地址
	SvagUrl string `json:"svagUrl"`
}