Created
April 25, 2020 18:42
-
-
Save naltynbekkz/e8a7727efdf9f06f05181bf92cf387af 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
@Module | |
public abstract class BlogsViewModelsModule { | |
@BlogsScope | |
@Binds | |
@IntoMap | |
@ViewModelKey(BlogsViewModel.class) | |
public abstract ViewModel bindBlogsViewModel(BlogsViewModel viewModel); | |
@BlogsScope | |
@Binds | |
@IntoMap | |
@ViewModelKey(BlogViewModel.class) | |
public abstract ViewModelAssistedFactory<? extends ViewModel> bindBlogViewModel(BlogViewModel_AssistedFactory viewModel); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment