YMBlackListViewModel.h 543 B

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