Skip to content

Instantly share code, notes, and snippets.

@LiewJunTung
Created March 22, 2019 17:02
Show Gist options
  • Save LiewJunTung/d1f5fa9b95c27eea276c50b29f6ee312 to your computer and use it in GitHub Desktop.
Save LiewJunTung/d1f5fa9b95c27eea276c50b29f6ee312 to your computer and use it in GitHub Desktop.
interfaces for LoginView and LoginPresenter
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