Source code for the WriteFreely SwiftUI app for iOS, iPadOS, and macOS
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

23 linhas
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. }