mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
17 lines
251 B
Swift
17 lines
251 B
Swift
|
|
//
|
||
|
|
// UserEntityExtension.swift
|
||
|
|
// MeshtasticClient
|
||
|
|
//
|
||
|
|
// Created by Garth Vander Houwen on 6/3/22.
|
||
|
|
//
|
||
|
|
|
||
|
|
import Foundation
|
||
|
|
|
||
|
|
extension UserEntity {
|
||
|
|
|
||
|
|
var messageList: [MessageEntity] {
|
||
|
|
|
||
|
|
self.value(forKey: "allMessages") as! [MessageEntity]
|
||
|
|
}
|
||
|
|
}
|