BogoYoungModeBlindPhoneVC.h 585 B

12345678910111213141516171819202122232425262728
  1. //
  2. // BogoYoungModeBlindPhoneVC.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/9/13.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import "BGBaseViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef enum : NSUInteger {
  11. BOGO_YOUNTH_BLIND_TYPE_PHONE,
  12. BOGO_YOUNTH_BLIND_TYPE_CODE,
  13. } BOGO_YOUNTH_BLIND_TYPE;
  14. @interface BogoYoungModeBlindPhoneVC : BGBaseViewController
  15. -(instancetype)initWithBlindType:(BOGO_YOUNTH_BLIND_TYPE)type;
  16. @property(nonatomic, strong) NSString *phoneNum;
  17. @property(nonatomic, assign) BOGO_YOUNTH_BLIND_TYPE type;
  18. @end
  19. NS_ASSUME_NONNULL_END