mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
21 lines
463 B
Swift
21 lines
463 B
Swift
import Foundation
|
|
import Postbox
|
|
|
|
public final class ConsumePersonalMessageAction: PendingMessageActionData {
|
|
public init() {
|
|
}
|
|
|
|
public init(decoder: PostboxDecoder) {
|
|
}
|
|
|
|
public func encode(_ encoder: PostboxEncoder) {
|
|
}
|
|
|
|
public func isEqual(to: PendingMessageActionData) -> Bool {
|
|
if let _ = to as? ConsumePersonalMessageAction {
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
}
|