| 1234567891011121314151617181920212223242526 |
- //
- // BuyRecoderListCell.h
- // VclustersGemini
- //
- // Created by 黄盛威 on 2020/10/19.
- // Copyright © 2020 APPLE. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol BuyRecoderListCellDelegate <NSObject>
- - (void)buyRecoderListCellOrderDetailBtnClick;
- @end
- @interface BuyRecoderListCell : UITableViewCell
- @property (nonatomic ,weak)id <BuyRecoderListCellDelegate> delegate;
- @end
- NS_ASSUME_NONNULL_END
|