MyCartCouponCell.h 552 B

1234567891011121314151617181920212223
  1. //
  2. // MyCartCouponCell.h
  3. // Asteria
  4. //
  5. // Created by 王猛 on 2024/2/1.
  6. //
  7. #import <WMBase/WMBase.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MyCartCouponCellData : NSObject
  10. @property (nonatomic, strong) NSMutableArray <NSDictionary*>*couponAry;
  11. @property (nonatomic, strong) NSString *coupon_code;
  12. @property (nonatomic, strong) NSString *discount_amount;
  13. @property (nonatomic, strong) NSString *currency_symbol;
  14. @end
  15. @interface MyCartCouponCell : TT_BaseCell
  16. @property (nonatomic, strong) MyCartCouponCellData *cellData;
  17. @end
  18. NS_ASSUME_NONNULL_END