mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
broken start of node info class
This commit is contained in:
parent
13df028951
commit
7e764cac2c
10 changed files with 79 additions and 17 deletions
16
MeshtasticClient/Model/Data/NodeInfoEntity.swift
Normal file
16
MeshtasticClient/Model/Data/NodeInfoEntity.swift
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue