We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ProductSearchResults
1 parent 4ed4fb6 commit e17f2a3Copy full SHA for e17f2a3
Storage/Storage/Model/ProductSearchResults+CoreDataProperties.swift
@@ -8,6 +8,7 @@ extension ProductSearchResults {
8
return NSFetchRequest<ProductSearchResults>(entityName: "ProductSearchResults")
9
}
10
11
+ @NSManaged public var filterKey: String?
12
@NSManaged public var keyword: String?
13
@NSManaged public var products: Set<Product>?
14
@@ -29,3 +30,7 @@ extension ProductSearchResults {
29
30
@NSManaged public func removeFromProducts(_ values: NSSet)
31
32
33
+
34
+extension ProductSearchResults : Identifiable {
35
36
+}
0 commit comments