123456789101112131415161718192021222324 |
- //
- // YMSearchUserViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/17.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- #import "YMSearchUserCellViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMSearchUserViewModel : MSYOUPAIViewModel
- /// 获取搜索用户列表数据
- - (void)getSearchUserListData;
- /// 搜索关键词
- @property (nonatomic, copy) NSString *searchKeywords;
- /// 请求数据分页
- @property (nonatomic, assign) NSInteger currentPage;
- /// 列表数据
- @property (nonatomic, strong, readonly) NSMutableArray <YMSearchUserCellViewModel*>*listDataArray;
- @end
- NS_ASSUME_NONNULL_END
|