mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 10:27:46 +01:00
17 lines
412 B
C
17 lines
412 B
C
|
#import "TGInterfaceController.h"
|
||
|
|
||
|
@class TGBridgeUser;
|
||
|
|
||
|
@interface TGContactsSearchResultsControllerContext : NSObject <TGInterfaceContext>
|
||
|
|
||
|
@property (nonatomic, strong) NSString *query;
|
||
|
@property (nonatomic, copy) void (^completionBlock)(TGBridgeUser *recipient);
|
||
|
|
||
|
@end
|
||
|
|
||
|
@interface TGContactsSearchResultsController : TGInterfaceController
|
||
|
|
||
|
@property (nonatomic, copy) IBOutlet WKInterfaceTable *table;
|
||
|
|
||
|
@end
|