mirror of
https://github.com/writeas/writefreely-swiftui-multiplatform.git
synced 2024-11-15 01:11:02 +00:00
25 lines
612 B
Swift
25 lines
612 B
Swift
import Foundation
|
|
import CoreData
|
|
|
|
|
|
extension WFACollection {
|
|
|
|
@nonobjc public class func fetchRequest() -> NSFetchRequest<WFACollection> {
|
|
return NSFetchRequest<WFACollection>(entityName: "WFACollection")
|
|
}
|
|
|
|
@NSManaged public var alias: String?
|
|
@NSManaged public var title: String?
|
|
@NSManaged public var blogDescription: String?
|
|
@NSManaged public var styleSheet: String?
|
|
@NSManaged public var isPublic: Bool
|
|
@NSManaged public var views: Int16
|
|
@NSManaged public var email: String?
|
|
@NSManaged public var url: String?
|
|
|
|
}
|
|
|
|
extension WFACollection : Identifiable {
|
|
|
|
}
|