view LazyBear/Global Models/WatchlistCompany+CoreDataProperties.swift @ 327:b39399c3c7cf

Reorganize files
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Tue, 30 Mar 2021 23:14:23 +0200
parents LazyBear/Models/WatchlistCompany+CoreDataProperties.swift@e3811abb510c
children fde2b30c719e
line wrap: on
line source

//
//  WatchlistCompany+CoreDataProperties.swift
//  LazyBear
//
//  Created by Dennis Concepción Martín on 24/3/21.
//
//

import Foundation
import CoreData


extension WatchlistCompany {

    @nonobjc public class func fetchRequest() -> NSFetchRequest<WatchlistCompany> {
        return NSFetchRequest<WatchlistCompany>(entityName: "WatchlistCompany")
    }

    @NSManaged public var symbol: String?
    @NSManaged public var name: String?
    @NSManaged public var watchlist: String?

}

extension WatchlistCompany : Identifiable {

}