mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-24 02:21:00 +00:00
e514ade036
Will add UI separately. Fixes #642
17 lines
445 B
Swift
17 lines
445 B
Swift
import CoreData
|
|
import Foundation
|
|
|
|
@objc(CDProfile)
|
|
final class CDProfile: NSManagedObject {
|
|
@nonobjc static func fetchRequest() -> NSFetchRequest<CDProfile> {
|
|
NSFetchRequest<CDProfile>(entityName: "CDProfile")
|
|
}
|
|
|
|
@NSManaged var json: Data?
|
|
@NSManaged var encryptedJSON: Data?
|
|
@NSManaged var name: String?
|
|
@NSManaged var providerName: String?
|
|
@NSManaged var uuid: UUID?
|
|
@NSManaged var lastUpdate: Date?
|
|
}
|