ASCouponListCell.h 383 B

123456789101112131415161718192021222324
  1. //
  2. // ASCouponListCell.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/6/25.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ASCouponsModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASCouponListCell : UITableViewCell
  11. @property (nonatomic, copy) btnClickBlock copyCallBack;
  12. - (void)setData:(ASCouponsModel *)model;
  13. - (void)setGiftCardStyle;
  14. - (void)setVipCouponStyle;
  15. @end
  16. NS_ASSUME_NONNULL_END