TUIOrderCellData.h 509 B

1234567891011121314151617181920212223
  1. //
  2. // TUIOrderCellData.h
  3. // TUIChat
  4. //
  5. // Created by xia on 2022/6/10.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <TIMCommon/TUIBubbleMessageCellData.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TUIOrderCellData : TUIBubbleMessageCellData
  11. @property(nonatomic, copy) NSString *title;
  12. @property(nonatomic, copy) NSString *desc;
  13. @property(nonatomic, copy) NSString *price;
  14. @property(nonatomic, copy) NSString *imageUrl;
  15. @property(nonatomic, copy) NSString *link;
  16. @end
  17. NS_ASSUME_NONNULL_END