123456789101112131415161718192021222324 |
- //
- // 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 <YMCallRecordCellViewModel*>*listDataArray;
- @end
- NS_ASSUME_NONNULL_END
|