-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVerb+CoreDataProperties.swift
42 lines (30 loc) · 1.01 KB
/
Verb+CoreDataProperties.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// Verb+CoreDataProperties.swift
// jsonToCoreData
//
// Created by Rachel Yee on 8/25/17.
// Copyright © 2017 Lookforrachel. All rights reserved.
//
import Foundation
import CoreData
extension Verb {
@nonobjc public class func fetchRequest() -> NSFetchRequest<Verb> {
return NSFetchRequest<Verb>(entityName: "Verb")
}
@NSManaged public var auxiliary: Int16
@NSManaged public var verbGroup: Int16
@NSManaged public var infinitive: String?
@NSManaged public var isRegular: Bool
@NSManaged public var conjugation: NSSet?
}
// MARK: Generated accessors for conjugation
extension Verb {
@objc(addConjugationObject:)
@NSManaged public func addToConjugation(_ value: Conjugation)
@objc(removeConjugationObject:)
@NSManaged public func removeFromConjugation(_ value: Conjugation)
@objc(addConjugation:)
@NSManaged public func addToConjugation(_ values: NSSet)
@objc(removeConjugation:)
@NSManaged public func removeFromConjugation(_ values: NSSet)
}