XYSetSkillInfoFooterView.h 441 B

1234567891011121314151617181920212223
  1. //
  2. // XYSetSkillInfoFooterView.h
  3. // Starbuds
  4. //
  5. // Created by 翟玉磊 on 2020/10/29.
  6. // Copyright © 2020 翟玉磊. All rights reserved.
  7. //
  8. #import "BaseView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^OrderStatusChangeBlock)(BOOL status);
  11. @interface XYSetSkillInfoFooterView : BaseView
  12. @property (nonatomic, copy) OrderStatusChangeBlock orderStatusChangeBlock;
  13. - (void)setupSwitchStatus:(BOOL)status;
  14. @end
  15. NS_ASSUME_NONNULL_END