10 lines
252 B
Swift
10 lines
252 B
Swift
import Foundation
|
|
|
|
/// Lightweight location model for the Keychain demo.
|
|
/// It shows that LocalData can store structured data even in secure domains.
|
|
nonisolated
|
|
struct SampleLocationData: Codable, Sendable {
|
|
let lat: Double
|
|
let lon: Double
|
|
}
|