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