YMPersonalDynamicViewModel.h 583 B

12345678910111213141516171819202122
  1. //
  2. // YMPersonalDynamicViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/3.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. #import "YMPersonalDynamicCellViewModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YMPersonalDynamicViewModel : MSYOUPAIViewModel
  12. /// 获取动态列表数据
  13. - (void)getPersonalDynamicListData;
  14. /// 请求数据分页
  15. @property (nonatomic, assign) NSInteger currentPage;
  16. /// 列表数据
  17. @property (nonatomic, strong, readonly) NSMutableArray <YMPersonalDynamicCellViewModel*>*listDataArray;
  18. @end
  19. NS_ASSUME_NONNULL_END