20 lines
399 B
Objective-C
20 lines
399 B
Objective-C
//
|
|
// MessageTextClickModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2023/1/30.
|
|
//
|
|
|
|
#import "MessageBaseModel.h"
|
|
#import "ContentSecretaryModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MessageTextClickModel : MessageBaseModel
|
|
@property (nonatomic,strong) NSAttributedString *attributedText;
|
|
///获取的模型
|
|
@property (nonatomic,strong) ContentSecretaryModel *contentInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|