mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-03 19:30:09 +00:00
16 lines
292 B
Objective-C
16 lines
292 B
Objective-C
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class MTDatacenterAddress;
|
|
|
|
@interface MTDatacenterAddressSet : NSObject <NSCoding>
|
|
|
|
@property (nonatomic, strong, readonly) NSArray *addressList;
|
|
|
|
- (instancetype)initWithAddressList:(NSArray *)addressList;
|
|
|
|
- (MTDatacenterAddress *)firstAddress;
|
|
|
|
@end
|