1234567891011121314151617181920212223242526 |
- //
- // YOUPAIZYFirstRechargeWindow.h
- // VQU
- //
- // Created by 肖浩然的mac on 2021/9/9.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "ZYBaseWindow.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol ZYFirstRechargeWindowDelegate <NSObject>
- -(void)youpaifLZFirstRechargeClickAdverImage:(NSInteger)link_type andUrl:(NSString *)link_url;
- @end
- @interface YOUPAIZYFirstRechargeWindow : ZYBaseWindow
- @property(nonatomic,strong)NSString *youpaipimageurl;
- @property(nonatomic,assign)NSInteger youpaiplink_type;
- @property(nonatomic,strong)NSString *youpaiplink_url;
- @property(nonatomic,weak)id<ZYFirstRechargeWindowDelegate>youpaipdelegate;
- @end
- NS_ASSUME_NONNULL_END
|