Impressia/Vernissage/CoreData/ApplicationSettings+CoreDat...

23 lines
497 B
Swift
Raw Normal View History

2022-12-31 16:31:05 +01:00
//
// https://mczachurski.dev
2023-01-12 18:34:48 +01:00
// Copyright © 2023 Marcin Czachurski and the repository contributors.
2022-12-31 16:31:05 +01:00
// Licensed under the MIT License.
//
//
import Foundation
import CoreData
extension ApplicationSettings {
@nonobjc public class func fetchRequest() -> NSFetchRequest<ApplicationSettings> {
return NSFetchRequest<ApplicationSettings>(entityName: "ApplicationSettings")
}
@NSManaged public var currentAccount: String?
2023-01-12 18:34:48 +01:00
@NSManaged public var tintColor: Int32
2022-12-31 16:31:05 +01:00
}