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.
 
 
 
 

43 lines
1.0 KiB

//
// 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 {
}