-
-
Save soundmasteraj/87f41e692ebeda8f1d69d654721b8379 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
package ${packageName}; | |
public class ${className}Presenter extends DemoBasePresenter<${className}Contract.View> implements ${className}Contract.Presenter { | |
@Inject | |
public ${className}Presenter(${className}Contract.View view){ | |
super(view); | |
} | |
@Override | |
public void subscribe() { | |
} | |
@Override | |
public void unSubscribe() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment