YMGuildManagementMyConnectionsViewModel.h 640 B

1234567891011121314151617181920212223
  1. //
  2. // YMGuildManagementMyConnectionsViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/26.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. #import "GHMemberListModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YMGuildManagementMyConnectionsViewModel : MSYOUPAIViewModel
  12. /// 获取我的人脉列表数据
  13. - (void)getMyConnectionsListData;
  14. /// 请求数据分页
  15. @property (nonatomic, assign) NSInteger currentPage;
  16. /// 列表数据
  17. @property (nonatomic, copy) NSString *memberNumber;
  18. @property (nonatomic, strong, readonly) NSMutableArray <GHMemberListModel*>*listDataArray;
  19. @end
  20. NS_ASSUME_NONNULL_END