mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-11-27 10:32:37 +00:00
14 lines
258 B
Objective-C
14 lines
258 B
Objective-C
#import "BITTelemetryObject.h"
|
|
#import "BITTelemetryData.h"
|
|
|
|
@interface BITBase : BITTelemetryData <NSCoding>
|
|
|
|
@property (nonatomic, copy) NSString *baseType;
|
|
|
|
- (instancetype)initWithCoder:(NSCoder *)coder;
|
|
|
|
- (void)encodeWithCoder:(NSCoder *)coder;
|
|
|
|
|
|
@end
|