Last active
January 30, 2019 14:29
-
-
Save gilgoldzweig/80ad4cb02a84aafbb29a18970a48739c to your computer and use it in GitHub Desktop.
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
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