Public should not be used in an app since it declares public to additional modules. However, an app is one module. Some structs/ classes need to be left public to conform to CoreData's generation. Signed-off-by: kingbri <bdashore3@proton.me>
13 lines
184 B
Swift
13 lines
184 B
Swift
//
|
|
// Bookmark+CoreDataClass.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 9/2/22.
|
|
//
|
|
//
|
|
|
|
import CoreData
|
|
import Foundation
|
|
|
|
@objc(Bookmark)
|
|
class Bookmark: NSManagedObject {}
|