Skip to content

Instantly share code, notes, and snippets.

@Shahgupta4sq
Last active November 7, 2017 07:11
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 Shahgupta4sq/4f737ffd6077e9e460465b552f721624 to your computer and use it in GitHub Desktop.
Save Shahgupta4sq/4f737ffd6077e9e460465b552f721624 to your computer and use it in GitHub Desktop.
interface EditProfileContract {
interface view {
fun setProgress(show: Boolean)
fun showEmptyFirstNameError()
fun showEmptyLastNameError()
}
interface presenter {
fun saveProfile(firstName: String, lastName: String, bio: String, email: String, city: City, gender: String)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment