mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
13 lines
342 B
C
13 lines
342 B
C
|
#import "TGCollectionItem.h"
|
||
|
|
||
|
@class TGAuthSession;
|
||
|
|
||
|
@interface TGAuthSessionItem : TGCollectionItem
|
||
|
|
||
|
@property (nonatomic, strong, readonly) TGAuthSession *authSession;
|
||
|
@property (nonatomic, copy) void (^removeRequested)();
|
||
|
|
||
|
- (instancetype)initWithAuthSession:(TGAuthSession *)authSession removeRequested:(void (^)())removeRequested;
|
||
|
|
||
|
@end
|