ASCheckoutCommentCell.h 384 B

12345678910111213141516171819202122232425
  1. //
  2. // ASCheckoutCommentCell.h
  3. // Asteria
  4. //
  5. // Created by xingyu on 2024/5/10.
  6. //
  7. #import <WMBase/WMBase.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ASCheckoutCommentData : NSObject
  10. @property (nonatomic, copy) NSString *commentStr;
  11. @end
  12. @interface ASCheckoutCommentCell : TT_BaseCell
  13. @property (nonatomic, strong) ASCheckoutCommentData *commentData;
  14. @end
  15. NS_ASSUME_NONNULL_END