mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-02 00:17:02 +00:00
14 lines
322 B
Objective-C
14 lines
322 B
Objective-C
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@protocol MTKeychain <NSObject>
|
|
|
|
- (void)setObject:(id)object forKey:(NSString *)aKey group:(NSString *)group;
|
|
- (id)objectForKey:(NSString *)aKey group:(NSString *)group;
|
|
- (void)removeObjectForKey:(NSString *)aKey group:(NSString *)group;
|
|
|
|
- (void)dropGroup:(NSString *)group;
|
|
|
|
@end
|