Source code for the WriteFreely SwiftUI app for iOS, iPadOS, and macOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

37 lines
944 B

  1. //
  2. // WFAPost+CoreDataProperties.swift
  3. // WriteFreely-MultiPlatform
  4. //
  5. // Created by Angelo Stavrow on 2020-09-08.
  6. //
  7. //
  8. import Foundation
  9. import CoreData
  10. extension WFAPost {
  11. @nonobjc public class func createFetchRequest() -> NSFetchRequest<WFAPost> {
  12. return NSFetchRequest<WFAPost>(entityName: "WFAPost")
  13. }
  14. @NSManaged public var appearance: String?
  15. @NSManaged public var body: String
  16. @NSManaged public var collectionAlias: String?
  17. @NSManaged public var createdDate: Date?
  18. @NSManaged public var language: String?
  19. @NSManaged public var postId: String?
  20. @NSManaged public var rtl: Bool
  21. @NSManaged public var slug: String?
  22. @NSManaged public var status: Int32
  23. @NSManaged public var title: String
  24. @NSManaged public var updatedDate: Date?
  25. @NSManaged public var hasNewerRemoteCopy: Bool
  26. @NSManaged public var wasDeletedFromServer: Bool
  27. }
  28. extension WFAPost: Identifiable {
  29. }