Skip to content

Commit 749ad68

Browse files
committed
Added comments
1 parent 2329d8d commit 749ad68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ExampleMVVM/Data/Repositories/DefaultMoviesRepository.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
//
55
// Created by Oleh Kudinov on 01.10.18.
66
//
7+
// **Note**: DTOs structs are mapped into Domains here, and Repository protocols does not contain DTOs
78

89
import Foundation
910

ExampleMVVM/Presentation/MoviesScene/MoviesList/ViewModel/MoviesListItemViewModel.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
//
55
// Created by Oleh Kudinov on 06/04/2020.
66
//
7+
// **Note**: This view model is to display data and does not contain any domain model to prevent views accessing it
78

89
import Foundation
910

10-
// Note: This view model is to display data and does not contain any domain model to prevent views accessing it
11-
1211
struct MoviesListItemViewModel: Equatable {
1312
let title: String
1413
let overview: String

0 commit comments

Comments
 (0)