30 lines
593 B
Swift
30 lines
593 B
Swift
//
|
|
// GameCollection+CoreDataProperties.swift
|
|
// Delta
|
|
//
|
|
// Created by Riley Testut on 11/1/15.
|
|
// Copyright © 2015 Riley Testut. All rights reserved.
|
|
//
|
|
// Choose "Create NSManagedObject Subclass…" from the Core Data editor menu
|
|
// to delete and recreate this implementation file for your updated model.
|
|
//
|
|
|
|
import Foundation
|
|
import CoreData
|
|
|
|
enum GameCollectionAttributes: String
|
|
{
|
|
case identifier
|
|
case index
|
|
|
|
case games
|
|
}
|
|
|
|
extension GameCollection {
|
|
|
|
@NSManaged var identifier: String
|
|
@NSManaged var index: Int16
|
|
|
|
@NSManaged var games: Set<Game>
|
|
}
|