forked from Jon-b-m/freeaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Oref0Suggestion+CoreDataProperties.swift
43 lines (31 loc) · 1.33 KB
/
Oref0Suggestion+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
43
import CoreData
import Foundation
public extension Oref0Suggestion {
@nonobjc class func fetchRequest() -> NSFetchRequest<Oref0Suggestion> {
NSFetchRequest<Oref0Suggestion>(entityName: "Oref0Suggestion")
}
@NSManaged var computedTDD: NSSet?
@NSManaged var computedInsulinDistribution: NSSet?
}
// MARK: Generated accessors for computedTDD
public extension Oref0Suggestion {
@objc(addComputedTDDObject:)
@NSManaged func addToComputedTDD(_ value: TDD)
@objc(removeComputedTDDObject:)
@NSManaged func removeFromComputedTDD(_ value: TDD)
@objc(addComputedTDD:)
@NSManaged func addToComputedTDD(_ values: NSSet)
@objc(removeComputedTDD:)
@NSManaged func removeFromComputedTDD(_ values: NSSet)
}
// MARK: Generated accessors for computedInsulinDistribution
public extension Oref0Suggestion {
@objc(addComputedInsulinDistributionObject:)
@NSManaged func addToComputedInsulinDistribution(_ value: InsulinDistribution)
@objc(removeComputedInsulinDistributionObject:)
@NSManaged func removeFromComputedInsulinDistribution(_ value: InsulinDistribution)
@objc(addComputedInsulinDistribution:)
@NSManaged func addToComputedInsulinDistribution(_ values: NSSet)
@objc(removeComputedInsulinDistribution:)
@NSManaged func removeFromComputedInsulinDistribution(_ values: NSSet)
}