passepartout-apple/PassepartoutLibrary/Sources/PassepartoutProvidersImpl/Data/CDInfrastructureLocation+Co...

45 lines
1.0 KiB
Swift
Raw Normal View History

2022-04-12 13:09:14 +00:00
//
// CDInfrastructureLocation+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 CDInfrastructureLocation {
2023-05-24 16:19:47 +00:00
@nonobjc class func fetchRequest() -> NSFetchRequest<CDInfrastructureLocation> {
2022-04-12 13:09:14 +00:00
return NSFetchRequest<CDInfrastructureLocation>(entityName: "CDInfrastructureLocation")
}
2023-05-24 16:19:47 +00:00
@NSManaged var countryCode: String?
@NSManaged var category: CDInfrastructureCategory?
@NSManaged var servers: NSSet?
2022-04-12 13:09:14 +00:00
}
// MARK: Generated accessors for servers
extension CDInfrastructureLocation {
@objc(addServersObject:)
2023-05-24 16:19:47 +00:00
@NSManaged func addToServers(_ value: CDInfrastructureServer)
2022-04-12 13:09:14 +00:00
@objc(removeServersObject:)
2023-05-24 16:19:47 +00:00
@NSManaged func removeFromServers(_ value: CDInfrastructureServer)
2022-04-12 13:09:14 +00:00
@objc(addServers:)
2023-05-24 16:19:47 +00:00
@NSManaged func addToServers(_ values: NSSet)
2022-04-12 13:09:14 +00:00
@objc(removeServers:)
2023-05-24 16:19:47 +00:00
@NSManaged func removeFromServers(_ values: NSSet)
2022-04-12 13:09:14 +00:00
}
2023-03-17 20:55:47 +00:00
extension CDInfrastructureLocation: Identifiable {
2022-04-12 13:09:14 +00:00
}