Mercurial > public > simoleon
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Simoleon/Models/DefaultCurrency+CoreDataProperties.swift Wed Jul 21 12:36:10 2021 +0100 @@ -0,0 +1,21 @@ +// +// DefaultCurrency+CoreDataProperties.swift +// Simoleon +// +// Created by Dennis Concepción Martín on 21/07/2021. +// +// + +import Foundation +import CoreData + + +extension DefaultCurrency { + + @nonobjc public class func fetchRequest() -> NSFetchRequest<DefaultCurrency> { + return NSFetchRequest<DefaultCurrency>(entityName: "DefaultCurrency") + } + + @NSManaged public var pair: String? + +}