Meshtastic-Apple/MeshtasticApple/Persistence/UserEntityExtension.swift
2022-06-09 22:11:54 -07:00

16 lines
250 B
Swift

//
// 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]
}
}