Mercurial > public > simoleon
comparison Simoleon/Models/DefaultCurrency+CoreDataProperties.swift @ 27:d95582268b44
Fix bug CoreData and minor UI changes
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Wed, 21 Jul 2021 12:36:10 +0100 |
parents | |
children | 75c1a05176f6 |
comparison
equal
deleted
inserted
replaced
26:337816652bfe | 27:d95582268b44 |
---|---|
1 // | |
2 // DefaultCurrency+CoreDataProperties.swift | |
3 // Simoleon | |
4 // | |
5 // Created by Dennis Concepción Martín on 21/07/2021. | |
6 // | |
7 // | |
8 | |
9 import Foundation | |
10 import CoreData | |
11 | |
12 | |
13 extension DefaultCurrency { | |
14 | |
15 @nonobjc public class func fetchRequest() -> NSFetchRequest<DefaultCurrency> { | |
16 return NSFetchRequest<DefaultCurrency>(entityName: "DefaultCurrency") | |
17 } | |
18 | |
19 @NSManaged public var pair: String? | |
20 | |
21 } |