You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
611 B

  1. //
  2. // KycForm2Presenter.swift
  3. // GMERemittance
  4. //
  5. // Created by gme_2 on 12/09/2018.
  6. //Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import Foundation
  9. class KycForm2Presenter {
  10. // MARK: Properties
  11. weak var view: KycForm2ViewInterface?
  12. var interactor: KycForm2InteractorInput?
  13. var wireframe: KycForm2WireframeInput?
  14. // MARK: Converting entities
  15. }
  16. // MARK: KycForm2 module interface
  17. extension KycForm2Presenter: KycForm2ModuleInterface {
  18. }
  19. // MARK: KycForm2 interactor output interface
  20. extension KycForm2Presenter: KycForm2InteractorOutput {
  21. }