mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-28 04:12:40 +00:00
28 lines
685 B
Swift
28 lines
685 B
Swift
//
|
|
// CDInfrastructureDefaultSettings+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
|
|
|
|
extension CDInfrastructureDefaultSettings {
|
|
|
|
@nonobjc class func fetchRequest() -> NSFetchRequest<CDInfrastructureDefaultSettings> {
|
|
return NSFetchRequest<CDInfrastructureDefaultSettings>(entityName: "CDInfrastructureDefaultSettings")
|
|
}
|
|
|
|
@NSManaged var countryCode: String?
|
|
@NSManaged var usernamePlaceholder: String?
|
|
@NSManaged var infrastructure: CDInfrastructure?
|
|
|
|
}
|
|
|
|
extension CDInfrastructureDefaultSettings: Identifiable {
|
|
|
|
}
|