mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
25 lines
711 B
Objective-C
25 lines
711 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface TGPhoneNumberModel : NSObject
|
|
|
|
@property (nonatomic, strong, readonly) NSString *phoneNumber;
|
|
@property (nonatomic, strong, readonly) NSString *displayPhoneNumber;
|
|
|
|
@property (nonatomic, strong, readonly) NSString *label;
|
|
|
|
- (instancetype)initWithPhoneNumber:(NSString *)string label:(NSString *)label;
|
|
|
|
@end
|
|
|
|
|
|
@interface TGContactModel : NSObject
|
|
|
|
@property (nonatomic, strong, readonly) NSString *firstName;
|
|
@property (nonatomic, strong, readonly) NSString *lastName;
|
|
|
|
@property (nonatomic, strong, readonly) NSArray *phoneNumbers;
|
|
|
|
- (instancetype)initWithFirstName:(NSString *)firstName lastName:(NSString *)lastName phoneNumbers:(NSArray *)phoneNumbers;
|
|
|
|
@end
|