Mercurial > public > simoleon
comparison Simoleon/Models/Favourite+CoreDataProperties.swift @ 21:c3dda63f50ed v1.1
Added Core Data and UI changes
- Implement Watchlist
- Change conversion design
- Improve UX
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Mon, 19 Jul 2021 19:27:12 +0100 |
parents | |
children | 75c1a05176f6 |
comparison
equal
deleted
inserted
replaced
20:f8aabe5b7251 | 21:c3dda63f50ed |
---|---|
1 // | |
2 // Favourite+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 Favourite { | |
14 | |
15 @nonobjc public class func fetchRequest() -> NSFetchRequest<Favourite> { | |
16 return NSFetchRequest<Favourite>(entityName: "Favourite") | |
17 } | |
18 | |
19 @NSManaged public var currencyPair: String | |
20 | |
21 } | |
22 | |
23 extension Favourite : Identifiable { | |
24 | |
25 } |