123456789101112131415161718 |
- //
- // KBLinkFansController.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/21.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KBBaseViewController.h"
- typedef void(^LinkFansBlock)(void);
- @interface KBLinkFansController : KBBaseViewController
- @property (nonatomic, strong) NSString *wx_union_id;//微信union_id
- @property(nonatomic,copy)LinkFansBlock linkFansBlock;
- @end
|