import Foundation enum ConnectionStrategy: String, CaseIterable, Identifiable { case local = "Local" case localFirst = "Local first" case remote = "Remote" case remoteFirst = "Remote first" var id: Self { self } }