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