]> git.saurik.com Git - apple/security.git/blob - CircleJoinRequested/PersistentState.h
Security-59754.80.3.tar.gz
[apple/security.git] / CircleJoinRequested / PersistentState.h
1 //
2 // PersistentState.h
3 // Security
4 //
5 // Created by J Osborne on 7/11/13.
6 //
7 //
8
9 #import <Foundation/Foundation.h>
10 #include "keychain/SecureObjectSync/SOSCloudCircle.h"
11 #include "keychain/SecureObjectSync/SOSPeerInfo.h"
12
13 @interface PersistentState : 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 *applicationDate;
23 @property NSNumber *debugShowLeftReason;
24 @property BOOL absentCircleWithNoReason;
25 @end