YOUPAILCOneImageAttachment.h 806 B

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