// // EPMomentAPIHelper.h // YuMi // // Created by AI on 2025-10-10. // #import #import "BaseMvpPresenter.h" #import "MomentsInfoModel.h" #import "MomentsListInfoModel.h" NS_ASSUME_NONNULL_BEGIN /// 推荐/我的动态列表数据源类型 typedef NS_ENUM(NSInteger, EPMomentListSourceType) { EPMomentListSourceTypeRecommend = 0, EPMomentListSourceTypeMine = 1 }; /// 统一封装 Moments 列表 API @interface EPMomentAPIHelper : BaseMvpPresenter /// 拉取最新动态列表(默认 types:"0,2" 图片+文字) - (void)fetchLatestMomentsWithNextID:(NSString *)nextID completion:(void (^)(NSArray * _Nullable list, NSString *nextMomentID))completion failure:(void(^)(NSInteger code, NSString * _Nullable msg))failure; @end NS_ASSUME_NONNULL_END