TUIMergeMessageCellData.h 873 B

12345678910111213141516171819202122232425262728
  1. //
  2. // TUIMergeMessageCellData.h
  3. // Pods
  4. //
  5. // Created by harvy on 2020/12/9.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <TIMCommon/TIMDefine.h>
  9. #import <TIMCommon/TUIBubbleMessageCellData.h>
  10. #import <TIMCommon/TUIMessageCellData.h>
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface TUIMergeMessageCellData : TUIMessageCellData
  13. @property(nonatomic, copy) NSString *title;
  14. @property(nonatomic, strong) NSArray<NSString *> *abstractList;
  15. @property(nonatomic, strong) V2TIMMergerElem *mergerElem;
  16. @property(nonatomic, assign) CGSize abstractSize;
  17. @property(nonatomic, assign) CGSize abstractRow1Size;
  18. @property(nonatomic, assign) CGSize abstractRow2Size;
  19. @property(nonatomic, assign) CGSize abstractRow3Size;
  20. @property(nonatomic, strong) NSArray<NSDictionary *> *abstractSendDetailList;
  21. - (NSAttributedString *)abstractAttributedString;
  22. @end
  23. NS_ASSUME_NONNULL_END