blob: b94fd7a8f185072503388d9410efc3a2aacdb325 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma mark - Things Object Types
extern NSString *const kAppSectionType;
extern NSString *const kProjectType;
extern NSString *const kAreaType;
extern NSString *const kTagType;
extern NSString *const kTaskType;
#pragma mark - Keychain
extern NSString *const kKeychainService;
extern NSString *const kAuthenticationKeyKeychainKey;
#pragma mark - App Section Keys
typedef NSString* ThingsAppSectionKey NS_STRING_ENUM;
extern ThingsAppSectionKey const ThingsAppSectionKeyInbox;
extern ThingsAppSectionKey const ThingsAppSectionKeyToday;
extern ThingsAppSectionKey const ThingsAppSectionKeyUpcoming;
extern ThingsAppSectionKey const ThingsAppSectionKeyAnytime;
extern ThingsAppSectionKey const ThingsAppSectionKeySomeday;
extern ThingsAppSectionKey const ThingsURLRouteAdd;
|