1234567891011121314151617181920212223242526272829 |
- //
- // YMDynamicDetailCommentCellViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/21.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMDynamicDetailCommentCellViewModel : MSYOUPAIViewModel
- /// 动态Id
- @property (nonatomic, assign, readonly) NSInteger commentId;
- /// 用户Id
- @property (nonatomic, assign, readonly) NSInteger userId;
- /// 用户头像
- @property (nonatomic, strong, readonly) NSString *userAvatar;
- /// 用户昵称
- @property (nonatomic, strong, readonly) NSString *userNickname;
- /// 动态消息日期
- @property (nonatomic, strong, readonly) NSString *dynamicCommentDate;
- /// 动态消息内容
- @property (nonatomic, strong, readonly) NSAttributedString *dynamicCommentContent;
- @end
- NS_ASSUME_NONNULL_END
|