Meshtastic-Apple/Meshtastic/Model/MapLocation.swift
2022-06-24 08:00:18 -07:00

15 lines
251 B
Swift

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