SecureStorageSample/SecureStorgageSample/Models/SampleLocationData.swift

9 lines
145 B
Swift

import Foundation
/// Location data model.
nonisolated
struct SampleLocationData: Codable, Sendable {
let lat: Double
let lon: Double
}