mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
16 lines
286 B
Objective-C
16 lines
286 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <SSignalKit/SSignalKit.h>
|
|
|
|
@interface TGPasscodeStatus : NSObject
|
|
|
|
@property (nonatomic, readonly) bool enabled;
|
|
@property (nonatomic, readonly) bool encrypted;
|
|
|
|
@end
|
|
|
|
@interface TGPasscodeSignals : NSObject
|
|
|
|
+ (SSignal *)passcodeStatus;
|
|
|
|
@end
|