16 lines
309 B
Swift
16 lines
309 B
Swift
//
|
|
// LocationsAddViewModeling.swift
|
|
// Locations
|
|
//
|
|
// Created by Javier Cicchelli on 11/04/2023.
|
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
|
//
|
|
|
|
protocol LocationsAddViewModeling: AnyObject {
|
|
|
|
// MARK: Properties
|
|
|
|
var coordinator: LocationsAddCoordination? { get set }
|
|
|
|
}
|