1234567891011121314151617181920 |
- //
- // YOUPAILCOneImageAttachment.h
- // LiveChat
- //
- // Created by 张灿 on 2018/9/22.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "LCCustomAttachmentDefine.h"
- @interface YOUPAILCOneImageAttachment : NSObject<NIMCustomAttachment,LCCustomAttachmentInfo>
- @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
|