CustomerWebViewController.h 494 B

1234567891011121314151617181920212223
  1. //
  2. // CustomerWebViewController.h
  3. // VclustersGemini
  4. //
  5. // Created by 余衡武 on 2022/8/11.
  6. // Copyright © 2022 APPLE. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CustomerWebViewController : BaseViewController
  11. @property (nonatomic,copy) NSString *webUrl;
  12. @property (nonatomic,copy) NSString *titleStr;
  13. @property (nonatomic,assign) BOOL needHidenNav;
  14. @property (nonatomic,copy) void (^didClickBackFun)(void);
  15. @end
  16. NS_ASSUME_NONNULL_END