1234567891011121314151617181920212223242526 |
- //
- // YMCallRecordCellViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/20.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMCallRecordCellViewModel : MSYOUPAIViewModel
- /// 用户Id
- @property (nonatomic, assign, readonly) NSInteger userId;
- /// 用户头像
- @property (nonatomic, strong, readonly) NSString *userAvatar;
- /// 用户昵称
- @property (nonatomic, strong, readonly) NSString *userNickname;
- /// 用户通话时长
- @property (nonatomic, strong, readonly) NSString *userCallDuration;
- /// 用户通话日期
- @property (nonatomic, strong, readonly) NSString *userCallDate;
- @end
- NS_ASSUME_NONNULL_END
|