You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
657 B
31 lines
657 B
//
|
|
// Relationship.swift
|
|
// LeStorage
|
|
//
|
|
// Created by Laurent Morvillier on 27/11/2024.
|
|
//
|
|
|
|
public enum StoreLookup {
|
|
case same
|
|
case main
|
|
case child
|
|
}
|
|
|
|
public struct Relationship {
|
|
|
|
public init(type: any Storable.Type, keyPath: AnyKeyPath, storeLookup: StoreLookup) {
|
|
self.type = type
|
|
self.keyPath = keyPath
|
|
self.storeLookup = storeLookup
|
|
}
|
|
|
|
/// The type of the relationship
|
|
var type: any Storable.Type
|
|
|
|
/// the keyPath to access the relationship
|
|
var keyPath: AnyKeyPath
|
|
|
|
/// Indicates whether the linked object is on the main Store
|
|
var storeLookup: StoreLookup
|
|
|
|
}
|
|
|