TempBasalStored+CoreDataProperties.swift 583 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // TempBasalStored+CoreDataProperties.swift
  3. // FreeAPS
  4. //
  5. // Created by Cengiz Deniz on 08.09.24.
  6. //
  7. //
  8. import Foundation
  9. import CoreData
  10. extension TempBasalStored {
  11. @nonobjc public class func fetchRequest() -> NSFetchRequest<TempBasalStored> {
  12. return NSFetchRequest<TempBasalStored>(entityName: "TempBasalStored")
  13. }
  14. @NSManaged public var duration: Int16
  15. @NSManaged public var rate: NSDecimalNumber?
  16. @NSManaged public var tempType: String?
  17. @NSManaged public var pumpEvent: PumpEventStored?
  18. }
  19. extension TempBasalStored : Identifiable {
  20. }