YMSearchUserViewModel.h 638 B

123456789101112131415161718192021222324
  1. //
  2. // YMSearchUserViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/17.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. #import "YMSearchUserCellViewModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YMSearchUserViewModel : MSYOUPAIViewModel
  12. /// 获取搜索用户列表数据
  13. - (void)getSearchUserListData;
  14. /// 搜索关键词
  15. @property (nonatomic, copy) NSString *searchKeywords;
  16. /// 请求数据分页
  17. @property (nonatomic, assign) NSInteger currentPage;
  18. /// 列表数据
  19. @property (nonatomic, strong, readonly) NSMutableArray <YMSearchUserCellViewModel*>*listDataArray;
  20. @end
  21. NS_ASSUME_NONNULL_END