mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-19 02:36:29 +00:00
19 lines
318 B
Objective-C
19 lines
318 B
Objective-C
#import "BITTelemetryObject.h"
|
|
|
|
@implementation BITTelemetryObject
|
|
|
|
// empty implementation for the base class
|
|
- (NSDictionary *)serializeToDictionary{
|
|
return [NSDictionary dictionary];
|
|
}
|
|
|
|
- (void)encodeWithCoder:(NSCoder *)coder {
|
|
}
|
|
|
|
- (instancetype)initWithCoder:(NSCoder *)coder {
|
|
return [super init];
|
|
}
|
|
|
|
|
|
@end
|