YMDynamicMessagesCellViewModel.h 793 B

12345678910111213141516171819202122232425262728
  1. //
  2. // YMDynamicMessagesCellViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/21.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YMDynamicMessagesCellViewModel : MSYOUPAIViewModel
  11. /// 动态Id
  12. @property (nonatomic, assign, readonly) NSInteger dynamicId;
  13. /// 用户Id
  14. @property (nonatomic, assign, readonly) NSInteger userId;
  15. /// 用户头像
  16. @property (nonatomic, strong, readonly) NSString *userAvatar;
  17. /// 用户昵称
  18. @property (nonatomic, strong, readonly) NSString *userNickname;
  19. /// 动态消息内容
  20. @property (nonatomic, strong, readonly) NSAttributedString *dynamicMessagesContent;
  21. /// 动态消息日期
  22. @property (nonatomic, strong, readonly) NSString *dynamicMessagesDate;
  23. @end
  24. NS_ASSUME_NONNULL_END