Skip to content

Instantly share code, notes, and snippets.

@ismailgungor
Created March 21, 2019 15:16
Show Gist options
  • Save ismailgungor/3f4760d84505d9a57740ae4eb425c993 to your computer and use it in GitHub Desktop.
Save ismailgungor/3f4760d84505d9a57740ae4eb425c993 to your computer and use it in GitHub Desktop.
package com.kekyazilim.mvpblog
interface MainActivityContract {
interface View {
fun showDate(date: String)
fun bindViews()
fun initClickListeners()
}
interface Presenter {
fun setView(view: View)
fun created()
fun onShowDateButtonClick()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment