22 lines
534 B
Objective-C
22 lines
534 B
Objective-C
//
|
|
// MessageHeadlinesTextModel.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2024/5/9.
|
|
//
|
|
|
|
#import "MessageBaseModel.h"
|
|
#import "XPMessageRemoteExtModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MessageHeadlinesTextModel : MessageBaseModel
|
|
///富文本
|
|
@property (nonatomic,strong) NSAttributedString *textAttribute;
|
|
@property(nonatomic,assign) BOOL isSelf ;
|
|
@property(nonatomic,strong) XPMessageRemoteExtModel *extModel;
|
|
@property(nonatomic,assign) CGFloat width;
|
|
@property(nonatomic,assign) CGFloat imageHeight;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|