Created
March 22, 2019 17:02
-
-
Save LiewJunTung/d1f5fa9b95c27eea276c50b29f6ee312 to your computer and use it in GitHub Desktop.
interfaces for LoginView and LoginPresenter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.netvirta.common.login | |
| interface LoginView { | |
| fun loginResult(result: Boolean) | |
| } | |
| interface LoginPresenter { | |
| fun processLogin(password: String) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment