2023-04-11 19:36:36 +02:00
|
|
|
//
|
|
|
|
// LocationsAddViewModel.swift
|
|
|
|
// Locations
|
|
|
|
//
|
|
|
|
// Created by Javier Cicchelli on 11/04/2023.
|
|
|
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Combine
|
|
|
|
import Core
|
|
|
|
|
2023-04-11 21:36:16 +02:00
|
|
|
class LocationsAddViewModel: ObservableObject {
|
2023-04-11 19:36:36 +02:00
|
|
|
|
|
|
|
// MARK: Properties
|
|
|
|
|
2023-04-11 23:34:07 +02:00
|
|
|
weak var coordinator: LocationsAddCoordination?
|
2023-04-11 19:36:36 +02:00
|
|
|
|
|
|
|
// MARK: Initialisers
|
|
|
|
|
2023-04-11 23:34:07 +02:00
|
|
|
init(coordinator: LocationsAddCoordination) {
|
2023-04-11 19:36:36 +02:00
|
|
|
self.coordinator = coordinator
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-04-11 23:34:07 +02:00
|
|
|
|
|
|
|
// MARK: - LocationsAddViewModeling
|
|
|
|
|
|
|
|
extension LocationsAddViewModel: LocationsAddViewModeling {}
|