12345678910111213141516171819202122 |
- //
- // YMPersonalDynamicViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/3.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- #import "YMPersonalDynamicCellViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMPersonalDynamicViewModel : MSYOUPAIViewModel
- /// 获取动态列表数据
- - (void)getPersonalDynamicListData;
- /// 请求数据分页
- @property (nonatomic, assign) NSInteger currentPage;
- /// 列表数据
- @property (nonatomic, strong, readonly) NSMutableArray <YMPersonalDynamicCellViewModel*>*listDataArray;
- @end
- NS_ASSUME_NONNULL_END
|