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