mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
22 lines
463 B
Swift
22 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
|
|
}
|
|
}
|
|
}
|