[Feature] Location add #11

Merged
javier merged 8 commits from feature/location-add into main 2023-04-12 21:25:09 +00:00
Showing only changes of commit 9b04d3601c - Show all commits

View File

@ -6,10 +6,20 @@
// Copyright © 2023 Röck+Cöde. All rights reserved.
//
import Combine
protocol LocationsAddViewModeling: AnyObject {
// MARK: Properties
var coordinator: LocationsAddCoordination? { get set }
var locationExistsPublisher: Published<Bool>.Publisher { get }
// MARK: Functions
func cleanLocation()
func saveLocation()
func setLocation(latitude: Float, longitude: Float)
}