mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
16 lines
519 B
C
16 lines
519 B
C
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
#import "TGPhonebookNumber.h"
|
||
|
|
||
|
@interface TGPhonebookRecord : NSObject
|
||
|
|
||
|
@property (nonatomic, strong, readonly) NSString *firstName;
|
||
|
@property (nonatomic, strong, readonly) NSString *lastName;
|
||
|
@property (nonatomic, strong, readonly) NSString *middleName;
|
||
|
|
||
|
@property (nonatomic, strong, readonly) NSArray *phoneNumbers;
|
||
|
|
||
|
- (instancetype)initWithFirstName:(NSString *)firstName lastName:(NSString *)lastName middleName:(NSString *)middleName phoneNumbers:(NSArray *)phoneNumbers;
|
||
|
|
||
|
@end
|