PraiseListViewModel.h 519 字节
//
//  PraiseListViewModel.h
//  DreamSleep
//
//  Created by peter on 2022/10/18.
//

#import "DSNetworkTool.h"

NS_ASSUME_NONNULL_BEGIN

/// 用户点赞列表
@interface PraiseListViewModel : DSNetworkTool

@property (nonatomic, strong) NSArray *resultArr;

/// 查询用户点赞列表数据
/// @param offset 页码
/// @param completion completion
+ (NSURLSessionDataTask *)queryUserDynamicPraiseWithOffset:(int)offset completion:(void (^)(PraiseListViewModel *viewModel))completion;

@end

NS_ASSUME_NONNULL_END