File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
ExampleMVVM/Presentation/MoviesScene/MoviesQueriesList/ViewModel Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 7
7
8
8
import Foundation
9
9
10
+ struct MoviesQueryListViewModelActions {
11
+ var selectMovieQuery : ( MovieQuery ) -> Void
12
+ }
13
+
10
14
protocol MoviesQueryListViewModelInput {
11
15
func viewWillAppear( )
12
16
func didSelect( item: MoviesQueryListItemViewModel )
@@ -18,10 +22,6 @@ protocol MoviesQueryListViewModelOutput {
18
22
19
23
protocol MoviesQueryListViewModel : MoviesQueryListViewModelInput , MoviesQueryListViewModelOutput { }
20
24
21
- struct MoviesQueryListViewModelActions {
22
- var selectMovieQuery : ( MovieQuery ) -> Void
23
- }
24
-
25
25
typealias FetchRecentMovieQueriesUseCaseFactory = (
26
26
FetchRecentMovieQueriesUseCase . RequestValue ,
27
27
@escaping ( FetchRecentMovieQueriesUseCase . ResultValue ) -> Void
You can’t perform that action at this time.
0 commit comments