| 12345678910111213141516171819202122 |
- //
- // YBRechargeVC.h
- // YBVideo
- //
- // Created by YB007 on 2019/11/20.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import "YBBaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^rechargeSuccessBlock)(NSString *coin);
- @interface YBRechargeVC : YBBaseViewController
- @property (nonatomic,copy) rechargeSuccessBlock block;
- @end
- NS_ASSUME_NONNULL_END
|