Meshtastic-Apple/Meshtastic/Model/MapLocation.swift

16 lines
251 B
Swift
Raw Normal View History

//
// MapLocation.swift
// MeshtasticApple
//
// Created by Garth Vander Houwen on 12/17/21.
//
import Foundation
import MapKit
struct MapLocation: Identifiable {
2021-12-25 23:48:12 -08:00
let id = UUID()
let name: String
let coordinate: CLLocationCoordinate2D
}