interface VerificationContract
Following the MVP design pattern this interface represent the contract for the view and the presenter responsible for the code verification feature |
|
class VerificationFragment : FlowFragment<VerificationContract.Presenter>, VerificationContract.View, AccountSelectorView.Listener
a Fragment displaying the code verification screen |
|
class VerificationPresenter : VerificationContract.Presenter
Following the MVP design pattern this interface represent the implementation of the VerificationContract.Presenter. this class executes the code verification business logic and ask for UI updates depending on results. |