Swiftgram/submodules/LegacyComponents/Sources/TGMessageEntityBotCommand.m
2020-02-22 15:38:54 +04:00

11 lines
214 B
Objective-C

#import "TGMessageEntityBotCommand.h"
@implementation TGMessageEntityBotCommand
- (BOOL)isEqual:(id)object
{
return [super isEqual:object] && [object isKindOfClass:[TGMessageEntityBotCommand class]];
}
@end