mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-09 01:12:05 +00:00
Simplify development and maintenance immensely by making this a monorepository: - Convert PassepartoutKit and VPN bindings to local packages - OpenVPN/OpenSSL - WireGuard/Go - Make PassepartoutKit available via - Source submodule for production (private) - [Binary XCFramework for development](https://github.com/passepartoutvpn/passepartoutkit) - Add PassepartoutKit Demo in root - Deploy package later
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?
|
|
}
|