Mercurial > public > lazybear
comparison LazyBear/Models/Company+CoreDataProperties.swift @ 465:6953d83060a4
New design
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Sat, 17 Jul 2021 17:58:57 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
464:04e430ef254a | 465:6953d83060a4 |
---|---|
1 // | |
2 // Company+CoreDataProperties.swift | |
3 // lazybear | |
4 // | |
5 // Created by Dennis Concepción Martín on 17/07/2021. | |
6 // | |
7 // | |
8 | |
9 import Foundation | |
10 import CoreData | |
11 | |
12 | |
13 extension Company { | |
14 | |
15 @nonobjc public class func fetchRequest() -> NSFetchRequest<Company> { | |
16 return NSFetchRequest<Company>(entityName: "Company") | |
17 } | |
18 | |
19 @NSManaged public var symbol: String | |
20 @NSManaged public var companyName: String | |
21 | |
22 } | |
23 | |
24 extension Company : Identifiable { | |
25 | |
26 } |