Mercurial > public > simoleon
comparison 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 |
comparison
equal
deleted
inserted
replaced
52:3fa127885e60 | 53:b0bce2c8e4a9 |
---|---|
1 // | |
2 // Favorite+CoreDataProperties.swift | |
3 // Simoleon | |
4 // | |
5 // Created by Dennis Concepción Martín on 19/07/2021. | |
6 // | |
7 // | |
8 | |
9 import Foundation | |
10 import CoreData | |
11 | |
12 | |
13 extension Favorite { | |
14 | |
15 @nonobjc public class func fetchRequest() -> NSFetchRequest<Favorite> { | |
16 return NSFetchRequest<Favorite>(entityName: "Favorite") | |
17 } | |
18 | |
19 @NSManaged public var currencyPair: String | |
20 | |
21 } | |
22 | |
23 extension Favorite : Identifiable { | |
24 | |
25 } |