diff --git a/Apps/Locations/Libraries/Sources/Core/Protocols/View.swift b/Apps/Locations/Libraries/Sources/Core/Protocols/View.swift deleted file mode 100644 index 43c0b70..0000000 --- a/Apps/Locations/Libraries/Sources/Core/Protocols/View.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// View.swift -// Core -// -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. -// - -/// This protocol defines the view of the **MVVM** architecture. -public protocol View { - - // MARK: Properties - - /// The view model related to the view. - var viewModel: ViewModel { get set } - -} diff --git a/Apps/Locations/Libraries/Sources/Core/Protocols/ViewModel.swift b/Apps/Locations/Libraries/Sources/Core/Protocols/ViewModel.swift deleted file mode 100644 index a550329..0000000 --- a/Apps/Locations/Libraries/Sources/Core/Protocols/ViewModel.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// ViewModel.swift -// Core -// -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. -// - -/// This protocol defines the view model of the **MVVM** architecture. -public protocol ViewModel: AnyObject { - - // MARK: Properties - - /// The reference to the coordinator that initialised the view model. - var coordinator: Coordinator { get set } - -}