YBRechargeVC.h 371 B

12345678910111213141516171819202122
  1. //
  2. // YBRechargeVC.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2019/11/20.
  6. // Copyright © 2019 cat. All rights reserved.
  7. //
  8. #import "YBBaseViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^rechargeSuccessBlock)(NSString *coin);
  11. @interface YBRechargeVC : YBBaseViewController
  12. @property (nonatomic,copy) rechargeSuccessBlock block;
  13. @end
  14. NS_ASSUME_NONNULL_END