Newer
Older
LeftoverRecipe / app / src / main / kotlin / org / ntlab / leftoverrecipe / contract / SearchListViewContract.kt
MatsumotoKeiju on 9 Jul 2017 308 bytes [add] LeftoverRecipe Project
package org.ntlab.leftoverrecipe.contract

import org.ntlab.leftoverrecipe.api.recipe.RecipeApiResponse

/**
 * Created by matsumoto_k on 2017/05/20.
 */
interface SearchListViewContract {
    fun showRecipe(response: RecipeApiResponse)
    fun startDetailActivity(recipeData: RecipeApiResponse.RecipeData)
}