14 lines
346 B
14 lines
346 B
package callbackstruct
|
|
|
|
type CallbackBeforeAddFriendReq struct {
|
|
CallbackCommand `json:"callbackCommand"`
|
|
FromUserID string `json:"fromUserID" `
|
|
ToUserID string `json:"toUserID"`
|
|
ReqMsg string `json:"reqMsg"`
|
|
OperationID string `json:"operationID"`
|
|
}
|
|
|
|
type CallbackBeforeAddFriendResp struct {
|
|
CommonCallbackResp
|
|
}
|