mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
29 lines
504 B
Objective-C
29 lines
504 B
Objective-C
#import "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
|