12345678910111213141516171819202122 |
- //
- // YMBlackListViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/21.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- #import "YMBlackListCellViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMBlackListViewModel : MSYOUPAIViewModel
- /// 获取黑名单列表数据
- - (void)getBlackListData;
- /// 请求数据分页
- @property (nonatomic, assign) NSInteger currentPage;
- /// 列表数据
- @property (nonatomic, strong) NSMutableArray <YMBlackListCellViewModel*>*listDataArray;
- @end
- NS_ASSUME_NONNULL_END
|