1234567891011121314151617181920212223242526272829303132 |
- //
- // YOUPAIZYBiXinVC.h
- // VQU
- //
- // Created by Elaine on 2020/12/18.
- // Copyright © 2020 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAIZYVideoModel.h"
- #import "YOUPAIZYVideoHeartGiftModel.h"
- #import "ZYBaseWindow.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol ZYBiXinDelegate <NSObject>
- -(void)youpaifaddBiXinSuccess:(NSInteger)heart_count andVideoModel:(YOUPAIZYVideoModel *)model;
- @end
- @interface YOUPAIZYBiXinVC : ZYBaseWindow
- //@property(nonatomic,assign)CGFloat vWidth,vHeight;
- @property(nonatomic,strong)YOUPAIZYVideoHeartGiftModel *youpaipheartGiftModel;
- @property(nonatomic,strong)YOUPAIZYVideoModel *youpaipvideoModel;
- @property(nonatomic,weak)id<ZYBiXinDelegate>youpaipdelegate;
- @end
- NS_ASSUME_NONNULL_END
|