// // YMCallRecordViewModel.h // MSYOUPAI // // Created by YoMi on 2024/3/20. // Copyright © 2024 MS. All rights reserved. // #import "MSYOUPAIViewModel.h" #import "YMCallRecordCellViewModel.h" NS_ASSUME_NONNULL_BEGIN @interface YMCallRecordViewModel : MSYOUPAIViewModel /// 获取通话记录列表数据 - (void)getCallRecordListData; /// 前往私聊 - (void)gotoPrivateChatWithUserId:(NSInteger)userId; /// 请求数据分页 @property (nonatomic, assign) NSInteger currentPage; /// 列表数据 @property (nonatomic, strong, readonly) NSMutableArray *listDataArray; @end NS_ASSUME_NONNULL_END