1//
2//  KNPersistantState.h
3//  Security
4//
5//  Created by J Osborne on 7/28/13.
6//
7//
8
9#import <Foundation/Foundation.h>
10#include "SecureObjectSync/SOSCloudCircle.h"
11#include "SecureObjectSync/SOSPeerInfo.h"
12
13@interface KNPersistantState : NSObject
14+(instancetype)loadFromStorage;
15-(void)writeToStorage;
16
17@property SOSCCStatus lastCircleStatus;
18@property NSNumber *debugLeftReason;
19@property NSNumber *pendingApplicationReminderInterval;
20@property NSDate *pendingApplicationReminder;
21@property NSDate *applcationDate;
22@property NSDate *lastWritten;
23@end
24