Skip to content

Instantly share code, notes, and snippets.

@gilgoldzweig
Last active January 30, 2019 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gilgoldzweig/80ad4cb02a84aafbb29a18970a48739c to your computer and use it in GitHub Desktop.
Save gilgoldzweig/80ad4cb02a84aafbb29a18970a48739c to your computer and use it in GitHub Desktop.
interface BaseContract {
@UiThread
interface View
interface Presenter<V : View> {
fun attach(view: V)
fun detach()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment