// // YMDynamicMessagesViewModel.h // MSYOUPAI // // Created by YoMi on 2024/3/21. // Copyright © 2024 MS. All rights reserved. // #import "MSYOUPAIViewModel.h" #import "YMDynamicMessagesCellViewModel.h" NS_ASSUME_NONNULL_BEGIN @interface YMDynamicMessagesViewModel : MSYOUPAIViewModel /// 获取动态消息列表数据 - (void)getDynamicMessagesListData; /// 请求数据分页 @property (nonatomic, assign) NSInteger currentPage; /// 列表数据 @property (nonatomic, strong, readonly) NSMutableArray *listDataArray; /// 前往动态详情 @property (nonatomic, strong, readonly) RACSubject *gotoDynamicDetailSubject; @end NS_ASSUME_NONNULL_END