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.
 
 
 

25 lines
612 B

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