Swiftgram/submodules/SyncCore/Sources/UpdateMessageReactionsAction.swift
2019-10-21 16:58:00 +04:00

21 lines
445 B
Swift

import Postbox
public final class UpdateMessageReactionsAction: PendingMessageActionData {
public init() {
}
public init(decoder: PostboxDecoder) {
}
public func encode(_ encoder: PostboxEncoder) {
}
public func isEqual(to: PendingMessageActionData) -> Bool {
if let _ = to as? UpdateMessageReactionsAction {
return true
} else {
return false
}
}
}