YOUPAILCMessageTxtAttachment.h 834 B

123456789101112131415161718192021
  1. //
  2. // YOUPAILCMessageTxtAttachment.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 YOUPAILCMessageTxtAttachment : NSObject<NIMCustomAttachment,LCCustomAttachmentInfo>
  11. //@property(nonatomic,strong)NSString* action;//标题
  12. @property(nonatomic,strong)NSString* title;//标题
  13. @property(nonatomic,strong)NSString* date;//时间
  14. @property(nonatomic,strong)NSString* txt1;//段落1
  15. @property(nonatomic,strong)NSArray* fields;//自定义字段数组
  16. @property(nonatomic,strong)NSString* txt2;//段落2
  17. @property(nonatomic,strong)NSString* link_url;//跳转本地页面或者H5页面地址
  18. @property(nonatomic,assign)NSInteger link_type;//0不点击 1打开H5页面 2打开原生页面
  19. @end