PumpEventStored+CoreDataProperties.swift 702 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // PumpEventStored+CoreDataProperties.swift
  3. // FreeAPS
  4. //
  5. // Created by Cengiz Deniz on 08.09.24.
  6. //
  7. //
  8. import Foundation
  9. import CoreData
  10. extension PumpEventStored {
  11. @nonobjc public class func fetchRequest() -> NSFetchRequest<PumpEventStored> {
  12. return NSFetchRequest<PumpEventStored>(entityName: "PumpEventStored")
  13. }
  14. @NSManaged public var id: String?
  15. @NSManaged public var isUploadedToNS: Bool
  16. @NSManaged public var note: String?
  17. @NSManaged public var timestamp: Date?
  18. @NSManaged public var type: String?
  19. @NSManaged public var bolus: BolusStored?
  20. @NSManaged public var tempBasal: TempBasalStored?
  21. }
  22. extension PumpEventStored : Identifiable {
  23. }