Meshtastic-Apple/Meshtastic/Persistence/ChannelEntityExtension.swift

16 lines
264 B
Swift
Raw Normal View History

2022-11-07 18:31:12 -08:00
//
// ChannelEntityExtension.swift
// Meshtastic
//
// Copyright(c) Garth Vander Houwen 11/7/22.
//
import Foundation
extension ChannelEntity {
var allPrivateMessages: [MessageEntity] {
self.value(forKey: "allPrivateMessages") as! [MessageEntity]
}
}