// // YOUPAILCOneImageAttachment.h // LiveChat // // Created by 张灿 on 2018/9/22. // Copyright © 2018年 caicai. All rights reserved. // #import #import "LCCustomAttachmentDefine.h" @interface YOUPAILCOneImageAttachment : NSObject @property(nonatomic,assign)NSInteger act_type;//1只显示类别 2显示标题 @property(nonatomic,strong)NSString* act_string;//type为1的时候显示的水印文字 @property(nonatomic,strong)NSString* image;//图片地址 @property(nonatomic,strong)NSString* title;//标题 @property(nonatomic,strong)NSString* txt;//简介 @property(nonatomic,strong)NSString* link_url; @property(nonatomic,assign)NSInteger link_type;//l链接类型 0 不跳转 1H5页面 2本地页面 3本地逻辑 @end