1234567891011121314151617181920212223 |
- //
- // YMGuildManagementMyConnectionsViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/26.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- #import "GHMemberListModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMGuildManagementMyConnectionsViewModel : MSYOUPAIViewModel
- /// 获取我的人脉列表数据
- - (void)getMyConnectionsListData;
- /// 请求数据分页
- @property (nonatomic, assign) NSInteger currentPage;
- /// 列表数据
- @property (nonatomic, copy) NSString *memberNumber;
- @property (nonatomic, strong, readonly) NSMutableArray <GHMemberListModel*>*listDataArray;
- @end
- NS_ASSUME_NONNULL_END
|