mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-11 02:12:07 +00:00
Also, improve filters by constraining related fields: - Pick countries from the filtered category - Pick presets from those available in the currently filtered servers Closes #705
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?
|
|
}
|