mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-02 12:48:45 +00:00
14 lines
244 B
Objective-C
14 lines
244 B
Objective-C
#import "BITBase.h"
|
|
@class BITTelemetryData;
|
|
|
|
@interface BITData : BITBase <NSCoding>
|
|
|
|
@property (nonatomic, strong) BITTelemetryData *baseData;
|
|
|
|
- (instancetype)initWithCoder:(NSCoder *)coder;
|
|
|
|
- (void)encodeWithCoder:(NSCoder *)coder;
|
|
|
|
|
|
@end
|