GBA001/Delta/Database/Model/Machine/_GameCollection.swift
Riley Testut 93119b4714 Reorganizes Xcode project structure
Merges “Common” folder into main Delta target folder
2016-12-20 18:24:43 -06:00

27 lines
585 B
Swift

// DO NOT EDIT. This file is machine-generated and constantly overwritten.
// Make changes to GameCollection.swift instead.
import Foundation
import CoreData
import DeltaCore
public class _GameCollection: NSManagedObject
{
@nonobjc public class func fetchRequest() -> NSFetchRequest<GameCollection> {
return NSFetchRequest<GameCollection>(entityName: "GameCollection")
}
// MARK: - Properties
@NSManaged public var identifier: String
@NSManaged public var index: Int16
// MARK: - Relationships
@NSManaged public var games: Set<Game>
}