ComReplyModel.h 872 字节
//
//  ComReplyModel.h
//  DreamSleep
//
//  Created by peter on 2022/10/8.
//

#import <Foundation/Foundation.h>
#import "CommentModel.h"
#import "ReplyModel.h"

NS_ASSUME_NONNULL_BEGIN

FOUNDATION_EXTERN UIFont * const CommentContentFont;

/// 动态评论回复model
@interface ComReplyModel : NSObject
/// 评论model
@property (nonatomic, strong) CommentModel *commentModel;
/// 回复model
@property (nonatomic, strong) ReplyModel *replyModel;

- (NSString *)replyNickName;

+ (UIFont *)commentContentFont;
+ (UIFont *)replyNickNameFont;
+ (UIFont *)replyContentFont;

- (NSAttributedString *)replyContentAttriStr;

- (CGFloat)commentContentLeftMargin;
- (CGFloat)commentContentRightMargin;

- (CGFloat)commentContentHeight;
- (CGFloat)replyNickNameW;
- (CGSize)replyContentSize;
- (CGFloat)replyViewHeight;
- (CGFloat)commentCellHeight;
@end

NS_ASSUME_NONNULL_END