view LazyBear/Models/UsStatesModel.swift @ 470:2af5d172e024

update tags
author convert-repo
date Tue, 03 Jun 2025 14:03:54 +0000
parents 6953d83060a4
children
line wrap: on
line source

//
//  UsStatesModel.swift
//  lazybear
//
//  Created by Dennis Concepción Martín on 17/07/2021.
//

import SwiftUI
import MapKit

struct UsStatesModel: Codable {
    var state: String
    var latitude: CLLocationDegrees
    var longitude: CLLocationDegrees
}