24 lines
482 B
Objective-C
24 lines
482 B
Objective-C
//
|
|
// YMMineFansPresenter.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/12/21.
|
|
//
|
|
|
|
#import "BaseMvpPresenter.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPMineFansPresenter : BaseMvpPresenter
|
|
/// 用户粉丝列表
|
|
/// @param page 当前的页数
|
|
/// @param pageSize 一页多少个
|
|
- (void)getUserFansList:(int)page pageSize:(int)pageSize state:(int)state;
|
|
|
|
/// 关注粉丝
|
|
/// @param targetUid 目标用户的uid
|
|
- (void)attentionFans:(NSString *)targetUid;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|