Newer
Older
Cactus-CleanArchitecture / app / src / main / java / org / ntlab / radishforandroidstudio / CactusCleanArchitecture / UseCases / UserLoginBoundary.java
package org.ntlab.radishforandroidstudio.CactusCleanArchitecture.UseCases;

/**
 * 入力情報をInputUserPresenterからUserLoginUserCaseに
 * 情報を渡すためのInterfaceクラス
 *
 * @author n-konishi
 */

public interface UserLoginBoundary {

    String getUserId();

    String getUserPass();

}