25 lines
434 B
Swift
25 lines
434 B
Swift
|
//
|
||
|
// LocationsAddViewModel.swift
|
||
|
// Locations
|
||
|
//
|
||
|
// Created by Javier Cicchelli on 11/04/2023.
|
||
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Combine
|
||
|
import Core
|
||
|
|
||
|
class LocationsAddViewModel: ObservableObject, ViewModel {
|
||
|
|
||
|
// MARK: Properties
|
||
|
|
||
|
var coordinator: Coordinator
|
||
|
|
||
|
// MARK: Initialisers
|
||
|
|
||
|
init(coordinator: Coordinator) {
|
||
|
self.coordinator = coordinator
|
||
|
}
|
||
|
|
||
|
}
|