mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 10:27:46 +01:00
21 lines
536 B
C
21 lines
536 B
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
|