// // 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 *listDataArray; @end NS_ASSUME_NONNULL_END