CustomerWebViewController.h 436 B

12345678910111213141516171819202122
  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. @end
  15. NS_ASSUME_NONNULL_END