// // YMReceivedLikesViewModel.h // MSYOUPAI // // Created by YoMi on 2024/2/17. // Copyright © 2024 MS. All rights reserved. // #import "MSYOUPAIViewModel.h" #import "YMReceivedLikesCellViewModel.h" NS_ASSUME_NONNULL_BEGIN @interface YMReceivedLikesViewModel : MSYOUPAIViewModel /// 获取获赞列表数据 - (void)getReceivedLikesListData; /// 请求数据分页 @property (nonatomic, assign) NSInteger currentPage; /// 列表数据 @property (nonatomic, strong, readonly) NSMutableArray *listDataArray; @end NS_ASSUME_NONNULL_END