mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
21 lines
536 B
Objective-C
21 lines
536 B
Objective-C
#import "TGInterfaceController.h"
|
|
|
|
@class TGBridgeContext;
|
|
@class TGBridgeChat;
|
|
|
|
@interface TGGroupInfoControllerContext : NSObject <TGInterfaceContext>
|
|
|
|
@property (nonatomic, strong) TGBridgeContext *context;
|
|
@property (nonatomic, readonly) TGBridgeChat *groupChat;
|
|
|
|
- (instancetype)initWithGroupChat:(TGBridgeChat *)groupChat;
|
|
|
|
@end
|
|
|
|
@interface TGGroupInfoController : TGInterfaceController
|
|
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceTable *table;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceImage *activityIndicator;
|
|
|
|
@end
|