// // YMGroupGreetingViewModel.h // MSYOUPAI // // Created by macmini on 2025/5/25. // Copyright © 2025 MS. All rights reserved. // #import "MSYOUPAIViewModel.h" #import "YMGroupGreetingPopupView.h" NS_ASSUME_NONNULL_BEGIN @interface YMGroupGreetingViewModel : MSYOUPAIViewModel /// 请求数据分页 @property (nonatomic, assign) NSInteger currentPage; /// 当前数据数量 @property (nonatomic, assign) NSInteger currentSize; /// 列表数据 @property (nonatomic, strong) NSMutableArray *listDataArray; - (void)getGroupGreetingDataIsNew:(BOOL)isRefresh completion:(void(^)(BOOL isSuccess))completion; @end NS_ASSUME_NONNULL_END