SecureStorageSample/SecureStorageSample/Models/SampleLocationData.swift
Matt Bruce f4a4f1a527 comments
Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
2026-01-17 12:18:05 -06:00

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
}