// // BiometricAuthenticationPresenter.swift // GME Remit // // Created by InKwon Kim on 30/03/2019. //Copyright © 2019 Gobal Money Express Co. Ltd. All rights reserved. // import Foundation class BiometricAuthenticationPresenter { // MARK: Properties weak var view: BiometricAuthenticationViewInterface? var interactor: BiometricAuthenticationInteractorInput? var wireframe: BiometricAuthenticationWireframeInput? var information: String? // MARK: Converting entities } // MARK: BiometricAuthentication module interface extension BiometricAuthenticationPresenter: BiometricAuthenticationModuleInterface { func setInformation() { self.view?.information = self.information } func showAuthentication(){ // TODO: 생체인증 띄우기 self.wireframe?.showAuthentication() } } // MARK: BiometricAuthentication interactor output interface extension BiometricAuthenticationPresenter: BiometricAuthenticationInteractorOutput { }