mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-21 11:39:43 +00:00
16 lines
266 B
Objective-C
16 lines
266 B
Objective-C
#import "MTDatacenterAddressListData.h"
|
|
|
|
@implementation MTDatacenterAddressListData
|
|
|
|
- (instancetype)initWithAddressList:(NSArray *)addressList
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_addressList = addressList;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|