Meshtastic-Apple/Meshtastic/Persistence/ChannelEntityExtension.swift
Garth Vander Houwen b167d93a0c Assorted fixes
2022-12-03 01:08:06 -08:00

15 lines
285 B
Swift

//
// ChannelEntityExtension.swift
// Meshtastic
//
// Copyright(c) Garth Vander Houwen 11/7/22.
//
import Foundation
extension ChannelEntity {
var allPrivateMessages: [MessageEntity] {
self.value(forKey: "allPrivateMessages") as? [MessageEntity] ?? [MessageEntity]()
}
}