DosingDecisionObject+CoreDataProperties.swift 551 B

123456789101112131415161718192021
  1. //
  2. // DosingDecisionObject+CoreDataProperties.swift
  3. // LoopKit
  4. //
  5. // Created by Darin Krauss on 5/4/20.
  6. // Copyright © 2020 LoopKit Authors. All rights reserved.
  7. //
  8. import Foundation
  9. import CoreData
  10. extension DosingDecisionObject {
  11. @nonobjc public class func fetchRequest() -> NSFetchRequest<DosingDecisionObject> {
  12. return NSFetchRequest<DosingDecisionObject>(entityName: "DosingDecisionObject")
  13. }
  14. @NSManaged public var data: Data
  15. @NSManaged public var date: Date
  16. @NSManaged public var modificationCounter: Int64
  17. }