// // MHComment.h // MHDevelopExample // // Created by CoderMikeHe on 17/2/8. // Copyright © 2017年 CoderMikeHe. All rights reserved. // #import #import "MHUser.h" @protocol MHComment @end @interface MHComment : BaseModel /** 评论、回复id */ @property (nonatomic , copy) NSString * Id; /** 评论、被回复人id */ @property (nonatomic , assign) NSInteger ReplyUserId; /** 评论、被回复人id */ @property (nonatomic , assign) NSInteger UserId; /** 创建时间 */ @property (nonatomic , copy) NSString *CreatedTime; /** 回复用户模型 */ @property (nonatomic , copy) NSString *Name; /** 来源用户模型 */ @property (nonatomic , copy) NSString *ReplyName; /** 话题内容 */ @property (nonatomic, copy) NSString *Content; /** 话题内容 */ @property (nonatomic, assign) BOOL IsUnderstand; /** 获取富文本 */ - (NSAttributedString *)attributedText; @end