// // Relationship.swift // LeStorage // // Created by Laurent Morvillier on 27/11/2024. // public struct Relationship { public init(type: any Storable.Type, keyPath: AnyKeyPath) { self.type = type self.keyPath = keyPath } /// The type of the relationship var type: any Storable.Type /// the keyPath to access the relationship var keyPath: AnyKeyPath }