Files
yinmeng-ios/xplan-ios/Main/Message/Protocol/MessageProtocol.h
2022-05-13 16:12:18 +08:00

27 lines
518 B
Objective-C

//
// MessageProtocol.h
// xplan-ios
//
// Created by zu on 2021/12/8.
//
#import <Foundation/Foundation.h>
@class ChatLimitModel, UserInfoModel;
NS_ASSUME_NONNULL_BEGIN
@protocol MessageProtocol <NSObject>
- (void)onGetLimitChat:(ChatLimitModel *)chatLimit;
///获取用户信息成功
- (void)onGetSessionUserInfoSuccess:(UserInfoModel *)userInfo;
///获取粉丝喜欢成功
- (void)getFansLikeSuccess:(BOOL)isLike;
///关注成功
- (void)attentionUserSuccess:(NSString *)uid;
@end
NS_ASSUME_NONNULL_END