[Libraries] Locations #4

Merged
javier merged 11 commits from libraries/locations into main 2023-04-10 15:31:23 +00:00
Showing only changes of commit e925048aa8 - Show all commits

View File

@ -0,0 +1,23 @@
//
// Location.swift
// Locations (Library)
//
// Created by Javier Cicchelli on 10/04/2023.
// Copyright © 2023 Röck+Cöde. All rights reserved.
//
public struct Location {
public let name: String?
public let latitude: Float
public let longitude: Float
}
// MARK: - Decodable
extension Location: Decodable {
enum CodingKeys: String, CodingKey {
case name
case latitude = "lat"
case longitude = "long"
}
}