Files
yinmeng-ios/xplan-ios/Main/Message/Presenter/MessagePresenter.h

29 lines
609 B
C
Raw Normal View History

2021-12-08 18:53:19 +08:00
//
// 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;
2021-12-08 18:53:19 +08:00
2022-03-11 16:25:10 +08:00
/// 获取用户信息
/// @param uid 用户uid
- (void)getUserInfo:(NSString *)uid;
2022-04-25 16:32:46 +08:00
///是否关注当前用户
- (void)getFansLike:(NSString *)likeUid;
/// 关注用户
/// @param targetUid 目标用户的uid
- (void)attentionUser:(NSString *)targetUid;
2023-08-24 17:03:32 +08:00
///用户的游戏配置信息
-(void)getGamePartnerInfoListWithUid:(NSString *)uid;
2021-12-08 18:53:19 +08:00
@end
NS_ASSUME_NONNULL_END