passepartout-apple/PassepartoutLibrary/Sources/PassepartoutProvidersImpl/Data/CDInfrastructureDefaultSett...

28 lines
685 B
Swift
Raw Normal View History

2022-04-12 13:09:14 +00:00
//
// 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
2022-04-12 13:09:14 +00:00
extension CDInfrastructureDefaultSettings {
2023-05-24 16:19:47 +00:00
@nonobjc class func fetchRequest() -> NSFetchRequest<CDInfrastructureDefaultSettings> {
2022-04-12 13:09:14 +00:00
return NSFetchRequest<CDInfrastructureDefaultSettings>(entityName: "CDInfrastructureDefaultSettings")
}
2023-05-24 16:19:47 +00:00
@NSManaged var countryCode: String?
@NSManaged var usernamePlaceholder: String?
@NSManaged var infrastructure: CDInfrastructure?
2022-04-12 13:09:14 +00:00
}
2023-03-17 20:55:47 +00:00
extension CDInfrastructureDefaultSettings: Identifiable {
2022-04-12 13:09:14 +00:00
}