YMCallRecordCellViewModel.h 686 B

1234567891011121314151617181920212223242526
  1. //
  2. // YMCallRecordCellViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/20.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YMCallRecordCellViewModel : MSYOUPAIViewModel
  11. /// 用户Id
  12. @property (nonatomic, assign, readonly) NSInteger userId;
  13. /// 用户头像
  14. @property (nonatomic, strong, readonly) NSString *userAvatar;
  15. /// 用户昵称
  16. @property (nonatomic, strong, readonly) NSString *userNickname;
  17. /// 用户通话时长
  18. @property (nonatomic, strong, readonly) NSString *userCallDuration;
  19. /// 用户通话日期
  20. @property (nonatomic, strong, readonly) NSString *userCallDate;
  21. @end
  22. NS_ASSUME_NONNULL_END