Meshtastic-Apple/MeshtasticApple/Persistence/UserEntityExtension.swift

17 lines
250 B
Swift
Raw Normal View History

//
// UserEntityExtension.swift
// MeshtasticApple
//
// Created by Garth Vander Houwen on 6/3/22.
//
import Foundation
extension UserEntity {
var messageList: [MessageEntity] {
self.value(forKey: "allMessages") as! [MessageEntity]
}
}