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

25 lines
578 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-13 13:37:01 +01:00
@NSManaged public var theme: Int32
2023-01-12 18:34:48 +01:00
@NSManaged public var tintColor: Int32
2022-12-31 16:31:05 +01:00
}
2023-01-13 13:37:01 +01:00
extension ApplicationSettings : Identifiable {
}