12345678910111213141516171819202122232425 |
- //
- // ASCheckoutPointApplyCell.h
- // Asteria
- //
- // Created by xingyu on 2024/5/8.
- //
- #import <WMBase/WMBase.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ASCheckoutPointData : NSObject
- @property (nonatomic, copy) NSString *pointCountInput;
- @property (nonatomic, copy) NSString *pointBalance;
- @end
- @interface ASCheckoutPointApplyCell : TT_BaseCell
- @property (nonatomic, strong) ASCheckoutPointData *pointCellData;
- @end
- NS_ASSUME_NONNULL_END
|