IHGuestInfoVCtr.swift 346 B

12345678910111213141516171819202122
  1. //
  2. // IHGuestInfoVCtr.swift
  3. // Inhealth
  4. //
  5. // Created by weclouds on 2020/2/7.
  6. // Copyright © 2020 weclouds. All rights reserved.
  7. //
  8. import UIKit
  9. class IHGuestInfoVCtr: UIViewController {
  10. let manager = IHGuestInfoManager()
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13. manager.bindController(self)
  14. }
  15. }