20 lines
372 B
Swift
20 lines
372 B
Swift
|
//
|
||
|
// LocationsListViewModeling.swift
|
||
|
// Locations
|
||
|
//
|
||
|
// Created by Javier Cicchelli on 11/04/2023.
|
||
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
||
|
//
|
||
|
|
||
|
protocol LocationsListViewModeling: AnyObject {
|
||
|
|
||
|
// MARK: Properties
|
||
|
|
||
|
var coordinator: LocationsListCoordination? { get set }
|
||
|
|
||
|
// MARK: Functions
|
||
|
|
||
|
func openAddLocation()
|
||
|
|
||
|
}
|