29 lines
609 B
Objective-C
29 lines
609 B
Objective-C
//
|
|
// MessagePresenter.h
|
|
// xplan-ios
|
|
//
|
|
// Created by zu on 2021/12/8.
|
|
//
|
|
|
|
#import "BaseMvpPresenter.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MessagePresenter : BaseMvpPresenter
|
|
|
|
- (void)getChatLimitReceiverUid:(NSString *)receiverUid;
|
|
|
|
/// 获取用户信息
|
|
/// @param uid 用户uid
|
|
- (void)getUserInfo:(NSString *)uid;
|
|
///是否关注当前用户
|
|
- (void)getFansLike:(NSString *)likeUid;
|
|
/// 关注用户
|
|
/// @param targetUid 目标用户的uid
|
|
- (void)attentionUser:(NSString *)targetUid;
|
|
///用户的游戏配置信息
|
|
-(void)getGamePartnerInfoListWithUid:(NSString *)uid;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|