QMChatFileTextAttachment.h 494 B

1234567891011121314151617181920212223
  1. //
  2. // QMChatFileTextAttachment.h
  3. // QMLineSDK
  4. //
  5. // Created by 焦林生 on 2021/12/9.
  6. // Copyright © 2021 haochongfeng. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface QMChatFileTextAttachment : NSTextAttachment
  11. @property (nonatomic, copy) NSString *url;
  12. @property (nonatomic, copy) NSString *org_imageurl;
  13. // video image
  14. @property (nonatomic, copy) NSString *type;
  15. @property (nonatomic, assign) BOOL need_replaceImage;
  16. @end
  17. NS_ASSUME_NONNULL_END