12345678910111213141516171819202122 |
- //
- // YOUPAILPYoungCloseWindow.h
- // livePro
- //
- // Created by leo on 2019/12/26.
- // Copyright © 2019 caiPro. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ZYBaseWindow.h"
- @protocol LPYoungCloseDelegate <NSObject>
- -(void)youpaifyoungForgetPwd;
- -(void)youpaifyoungClose;
- @end
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILPYoungCloseWindow : ZYBaseWindow
- //@property(nonatomic,assign)CGFloat vWith,vHeight;
- @property(nonatomic,weak)id<LPYoungCloseDelegate>youpaipdelegate;
- @end
- NS_ASSUME_NONNULL_END
|