1234567891011121314151617181920212223 |
- //
- // XYSetSkillInfoFooterView.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/10/29.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import "BaseView.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^OrderStatusChangeBlock)(BOOL status);
- @interface XYSetSkillInfoFooterView : BaseView
- @property (nonatomic, copy) OrderStatusChangeBlock orderStatusChangeBlock;
- - (void)setupSwitchStatus:(BOOL)status;
- @end
- NS_ASSUME_NONNULL_END
|