Files
real-e-party-iOS/YuMi/Modules/YMMonents/Model/MonentsCommentModel.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +08:00

43 lines
1.1 KiB
Objective-C

//
// MonentsCommentModel.h
// YUMI
//
// Created by YUMI on 2022/6/22.
//
#import <Foundation/Foundation.h>
#import "MonentsCommentReplyModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface MonentsCommentModel : PIBaseModel
///是否刷新高度
@property (nonatomic,assign) BOOL isReloadHeight;
///评论的高度
@property (nonatomic,assign) CGFloat commentRowHeight;
/// 昵称
@property (nonatomic,copy) NSString *nick;
/// 头像
@property (nonatomic,copy) NSString *avatar;
/// 用户 uid
@property (nonatomic,copy) NSString *uid;
///评论内容
@property (nonatomic,copy) NSString *content;
///时间
@property (nonatomic, copy) NSString *publishTime;
/// 当前评论id
@property (nonatomic, copy) NSString *commentId;
///回复的内容
@property (nonatomic,strong) MonentsCommentReplyModel *replyInfo;
/// 是否是楼主
@property (nonatomic, assign) BOOL landLordFlag;
@end
@interface MonentsCommentListModel : PIBaseModel
///评论的列表
@property (nonatomic,strong) NSArray<MonentsCommentModel *> *commentList;
///下一个评论的时间戳
@property (nonatomic,copy) NSString *nextTimestamp;
@end
NS_ASSUME_NONNULL_END