YMGroupGreetingViewModel.h 673 B

123456789101112131415161718192021222324252627
  1. //
  2. // YMGroupGreetingViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by macmini on 2025/5/25.
  6. // Copyright © 2025 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. #import "YMGroupGreetingPopupView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YMGroupGreetingViewModel : MSYOUPAIViewModel
  12. /// 请求数据分页
  13. @property (nonatomic, assign) NSInteger currentPage;
  14. /// 当前数据数量
  15. @property (nonatomic, assign) NSInteger currentSize;
  16. /// 列表数据
  17. @property (nonatomic, strong) NSMutableArray <YMGroupGreetingUserModel*>*listDataArray;
  18. - (void)getGroupGreetingDataIsNew:(BOOL)isRefresh completion:(void(^)(BOOL isSuccess))completion;
  19. @end
  20. NS_ASSUME_NONNULL_END