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