9 lines
311 B
Swift
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
|
|
}
|