LocalData/Sources/LocalData/Models/PlatformAvailability.swift
2026-01-13 21:13:17 -06:00

9 lines
311 B
Swift

import Foundation
public enum PlatformAvailability: Sendable {
case all // iPhone + Watch (small only!)
case phoneOnly // iPhone only (large/sensitive)
case watchOnly // Watch local only
case phoneWithWatchSync // Small data for explicit sync
}