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.
 
 
 

23 lines
576 B

  1. import Foundation
  2. import CoreData
  3. extension WFACollection {
  4. @nonobjc public class func createFetchRequest() -> NSFetchRequest<WFACollection> {
  5. return NSFetchRequest<WFACollection>(entityName: "WFACollection")
  6. }
  7. @NSManaged public var alias: String?
  8. @NSManaged public var blogDescription: String?
  9. @NSManaged public var email: String?
  10. @NSManaged public var isPublic: Bool
  11. @NSManaged public var styleSheet: String?
  12. @NSManaged public var title: String
  13. @NSManaged public var url: String?
  14. }
  15. extension WFACollection: Identifiable {
  16. }