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.
14 lines
356 B
14 lines
356 B
package call_back_struct
|
|
|
|
type CallbackBeforeAddFriendReq struct {
|
|
CallbackCommand string `json:"callbackCommand"`
|
|
FromUserID string `json:"fromUserID" `
|
|
ToUserID string `json:"toUserID"`
|
|
ReqMsg string `json:"reqMsg"`
|
|
OperationID string `json:"operationID"`
|
|
}
|
|
|
|
type CallbackBeforeAddFriendResp struct {
|
|
*CommonCallbackResp
|
|
}
|