123456789101112131415161718192021222324 |
- //
- // ASCheckoutAddressCell.h
- // Asteria
- //
- // Created by xingyu on 2024/5/9.
- //
- #import <WMBase/WMBase.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ASCheckoutAddressData : NSObject
- //地址
- @property (nonatomic, strong) ASAddressModel *addressModel;
- @end
- @interface ASCheckoutAddressCell : TT_BaseCell
- @end
- NS_ASSUME_NONNULL_END
|