// // YMMessagesViewModel.h // MSYOUPAI // // Created by YoMi on 2024/3/2. // Copyright © 2024 MS. All rights reserved. // #import "MSYOUPAIViewModel.h" #import "YMChatRecordViewModel.h" #import "YMCallRecordViewModel.h" NS_ASSUME_NONNULL_BEGIN @interface YMMessagesViewModel : MSYOUPAIViewModel /// 聊天记录VM @property (nonatomic, strong, readonly) YMChatRecordViewModel *chatRecordVM; /// 通话记录VM @property (nonatomic, strong, readonly) YMCallRecordViewModel *callRecordVM; @end NS_ASSUME_NONNULL_END