2023-04-11 21:36:16 +02:00
|
|
|
//
|
2023-04-11 23:34:07 +02:00
|
|
|
// LocationsListViewModeling.swift
|
2023-04-11 21:36:16 +02:00
|
|
|
// Locations
|
|
|
|
//
|
|
|
|
// Created by Javier Cicchelli on 11/04/2023.
|
|
|
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2023-04-11 23:34:07 +02:00
|
|
|
protocol LocationsListViewModeling: AnyObject {
|
2023-04-11 21:36:16 +02:00
|
|
|
|
|
|
|
// MARK: Properties
|
|
|
|
|
2023-04-11 23:34:07 +02:00
|
|
|
var coordinator: LocationsListCoordination? { get set }
|
2023-04-11 21:36:16 +02:00
|
|
|
|
|
|
|
// MARK: Functions
|
|
|
|
|
2023-04-11 23:34:07 +02:00
|
|
|
func openAddLocation()
|
2023-04-11 21:36:16 +02:00
|
|
|
|
|
|
|
}
|