mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-20 19:19:52 +00:00
16 lines
294 B
Objective-C
16 lines
294 B
Objective-C
#import "MTDatacenterAddressListData.h"
|
|
|
|
@implementation MTDatacenterAddressListData
|
|
|
|
- (instancetype)initWithAddressList:(NSDictionary<NSNumber *, NSArray *> *)addressList
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_addressList = addressList;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|