Swiftgram/submodules/LegacyComponents/Sources/TGDocumentAttributeAnimated.m
2025-06-18 17:24:21 +02:00

29 lines
521 B
Objective-C

#import <LegacyComponents/TGDocumentAttributeAnimated.h>
@implementation TGDocumentAttributeAnimated
- (instancetype)initWithKeyValueCoder:(PSKeyValueCoder *)__unused coder
{
return [self init];
}
- (void)encodeWithKeyValueCoder:(PSKeyValueCoder *)__unused coder
{
}
- (instancetype)initWithCoder:(NSCoder *)__unused aDecoder
{
return [self init];
}
- (void)encodeWithCoder:(NSCoder *)__unused aCoder
{
}
- (BOOL)isEqual:(id)object
{
return [object isEqual:[TGDocumentAttributeAnimated class]];
}
@end