ASCheckoutPointApplyCell.h 443 B

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