Painting+CoreDataProperties.swift 528 B

12345678910111213141516171819202122232425
  1. //
  2. // Painting+CoreDataProperties.swift
  3. //
  4. //
  5. // Created by Fengyu He on 2022/12/1.
  6. //
  7. //
  8. import Foundation
  9. import CoreData
  10. extension Painting {
  11. @nonobjc public class func fetchRequest() -> NSFetchRequest<Painting> {
  12. return NSFetchRequest<Painting>(entityName: "Painting")
  13. }
  14. @NSManaged public var create_time: Date?
  15. @NSManaged public var image: Data?
  16. @NSManaged public var session_hash: String?
  17. @NSManaged public var prompt: String?
  18. @NSManaged public var negative_prompt: String?
  19. }