ApplyShopVC.h 499 B

12345678910111213141516171819202122
  1. //
  2. // ApplyShopVC.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/2/14.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^subMitInfoSuccess)();
  11. @interface ApplyShopVC : YBBaseViewController
  12. @property (nonatomic, strong)NSDictionary *presonDic;
  13. @property (nonatomic, strong)NSString *fromWhere;
  14. @property (nonatomic, strong)NSDictionary *applyDic;
  15. @property (nonatomic, copy)subMitInfoSuccess subEvent;
  16. @end
  17. NS_ASSUME_NONNULL_END