// // YOUPAILCMessageTxtAttachment.h // LiveChat // // Created by 张灿 on 2018/9/22. // Copyright © 2018年 caicai. All rights reserved. // #import #import "LCCustomAttachmentDefine.h" @interface YOUPAILCMessageTxtAttachment : NSObject //@property(nonatomic,strong)NSString* action;//标题 @property(nonatomic,strong)NSString* title;//标题 @property(nonatomic,strong)NSString* date;//时间 @property(nonatomic,strong)NSString* txt1;//段落1 @property(nonatomic,strong)NSArray* fields;//自定义字段数组 @property(nonatomic,strong)NSString* txt2;//段落2 @property(nonatomic,strong)NSString* link_url;//跳转本地页面或者H5页面地址 @property(nonatomic,assign)NSInteger link_type;//0不点击 1打开H5页面 2打开原生页面 @end