YMDynamicDetailCommentCellViewModel.h 802 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // YMDynamicDetailCommentCellViewModel.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 YMDynamicDetailCommentCellViewModel : MSYOUPAIViewModel
  11. /// 动态Id
  12. @property (nonatomic, assign, readonly) NSInteger commentId;
  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) NSString *dynamicCommentDate;
  21. /// 动态消息内容
  22. @property (nonatomic, strong, readonly) NSAttributedString *dynamicCommentContent;
  23. @end
  24. NS_ASSUME_NONNULL_END