Meshtastic-Apple/Meshtastic/Persistence/ChannelEntityExtension.swift
Garth Vander Houwen 69d2c3d189 Multiple channels
2022-11-07 18:31:12 -08:00

15 lines
264 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]
}
}