Meshtastic-Apple/Meshtastic/Persistence/ChannelEntityExtension.swift

16 lines
282 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 {
2023-03-06 10:33:18 -08:00
2022-11-07 18:31:12 -08:00
var allPrivateMessages: [MessageEntity] {
2023-03-06 10:33:18 -08:00
2022-12-03 01:08:06 -08:00
self.value(forKey: "allPrivateMessages") as? [MessageEntity] ?? [MessageEntity]()
2022-11-07 18:31:12 -08:00
}
}