mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
16 lines
360 B
Swift
16 lines
360 B
Swift
import Foundation
|
|
import CoreData
|
|
|
|
extension NodeInfoEntity {
|
|
@nonobjc public class func createFetchRequest() -> NSFetchRequest<NodeInfoEntity> {
|
|
return NSFetchRequest<Commit>(entityName: "NodeInfoEntity")
|
|
}
|
|
|
|
|
|
@NSManaged public var id: UInt32
|
|
@NSManaged public var num: UInt32
|
|
@NSManaged public var sha: String
|
|
@NSManaged public var url: String
|
|
|
|
|
|
}
|