diff Simoleon/Models/Favorite+CoreDataProperties.swift @ 53:b0bce2c8e4a9

Refactor UK spelling to US
author Dennis Concepción Martín <dennisconcepcionmartin@gmail.com>
date Tue, 27 Jul 2021 09:44:51 +0100
parents Simoleon/Models/Favourite+CoreDataProperties.swift@75c1a05176f6
children 84137052813d
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Simoleon/Models/Favorite+CoreDataProperties.swift	Tue Jul 27 09:44:51 2021 +0100
@@ -0,0 +1,25 @@
+//
+//  Favorite+CoreDataProperties.swift
+//  Simoleon
+//
+//  Created by Dennis Concepción Martín on 19/07/2021.
+//
+//
+
+import Foundation
+import CoreData
+
+
+extension Favorite {
+    
+    @nonobjc public class func fetchRequest() -> NSFetchRequest<Favorite> {
+        return NSFetchRequest<Favorite>(entityName: "Favorite")
+    }
+    
+    @NSManaged public var currencyPair: String
+    
+}
+
+extension Favorite : Identifiable {
+    
+}