mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-25 23:47:58 +00:00
git-subtree-dir: submodules/MtProtoKit git-subtree-mainline:3b155750f5git-subtree-split:14ab734b97
20 lines
362 B
Objective-C
20 lines
362 B
Objective-C
#import "MTDatacenterAddressListData.h"
|
|
|
|
@implementation MTDatacenterAddressListData
|
|
|
|
- (instancetype)initWithAddressList:(NSDictionary<NSNumber *, NSArray *> *)addressList
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_addressList = addressList;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (NSString *)description {
|
|
return _addressList.description;
|
|
}
|
|
|
|
@end
|