Forecast+CoreDataProperties.swift 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // Forecast+CoreDataProperties.swift
  3. // FreeAPS
  4. //
  5. // Created by Cengiz Deniz on 08.09.24.
  6. //
  7. //
  8. import Foundation
  9. import CoreData
  10. extension Forecast {
  11. @nonobjc public class func fetchRequest() -> NSFetchRequest<Forecast> {
  12. return NSFetchRequest<Forecast>(entityName: "Forecast")
  13. }
  14. @NSManaged public var date: Date?
  15. @NSManaged public var id: UUID?
  16. @NSManaged public var type: String?
  17. @NSManaged public var forecastValues: NSSet?
  18. @NSManaged public var orefDetermination: OrefDetermination?
  19. }
  20. // MARK: Generated accessors for forecastValues
  21. extension Forecast {
  22. @objc(addForecastValuesObject:)
  23. @NSManaged public func addToForecastValues(_ value: ForecastValue)
  24. @objc(removeForecastValuesObject:)
  25. @NSManaged public func removeFromForecastValues(_ value: ForecastValue)
  26. @objc(addForecastValues:)
  27. @NSManaged public func addToForecastValues(_ values: NSSet)
  28. @objc(removeForecastValues:)
  29. @NSManaged public func removeFromForecastValues(_ values: NSSet)
  30. }
  31. extension Forecast : Identifiable {
  32. }