passepartout-apple/PassepartoutLibrary/Sources/PassepartoutVPNImpl/Data/CDProfile+CoreDataPropertie...

30 lines
585 B
Swift
Raw Normal View History

2022-04-12 13:09:14 +00:00
//
// CDProfile+CoreDataProperties.swift
//
//
// Created by Davide De Rosa on 27/03/22.
//
// This file was automatically generated and should not be edited.
//
import CoreData
import Foundation
2022-04-12 13:09:14 +00:00
extension CDProfile {
2023-05-24 16:19:47 +00:00
@nonobjc class func fetchRequest() -> NSFetchRequest<CDProfile> {
2022-04-12 13:09:14 +00:00
return NSFetchRequest<CDProfile>(entityName: "CDProfile")
}
2023-05-24 16:19:47 +00:00
@NSManaged var json: Data?
@NSManaged var name: String?
@NSManaged var providerName: String?
@NSManaged var uuid: UUID?
@NSManaged var lastUpdate: Date?
2022-04-12 13:09:14 +00:00
}
2023-03-17 20:55:47 +00:00
extension CDProfile: Identifiable {
2022-04-12 13:09:14 +00:00
}