Mercurial > public > simoleon
diff Simoleon/Models/DefaultCurrency+CoreDataProperties.swift @ 156:84137052813d
Refactor code
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Sat, 28 Aug 2021 11:15:25 +0100 |
parents | 75c1a05176f6 |
children |
line wrap: on
line diff
--- a/Simoleon/Models/DefaultCurrency+CoreDataProperties.swift Wed Aug 25 11:00:21 2021 +0100 +++ b/Simoleon/Models/DefaultCurrency+CoreDataProperties.swift Sat Aug 28 11:15:25 2021 +0100 @@ -2,7 +2,7 @@ // DefaultCurrency+CoreDataProperties.swift // Simoleon // -// Created by Dennis Concepción Martín on 21/07/2021. +// Created by Dennis Concepción Martín on 24/8/21. // // @@ -11,11 +11,16 @@ extension DefaultCurrency { - + @nonobjc public class func fetchRequest() -> NSFetchRequest<DefaultCurrency> { return NSFetchRequest<DefaultCurrency>(entityName: "DefaultCurrency") } - - @NSManaged public var pair: String? - + + @NSManaged public var firstSymbol: String + @NSManaged public var secondSymbol: String + } + +extension DefaultCurrency : Identifiable { + +}