Yini  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
DBCuDeltaEntry.h
Go to the documentation of this file.
1 //
2 // DBCuDeltaEntry.h
3 // DropboxSDK
4 //
5 // Created by Brian Smith on 6/11/12.
6 // Copyright (c) 2012 Dropbox, Inc. All rights reserved.
7 //
8 
9 #import "DBMetadata.h"
10 
11 @interface DBCuDeltaEntry : NSObject {
12  NSString *lowercasePath;
14  NSString *sortKey;
15  NSDate *timeTaken;
16  NSString *uniquenessKey;
17 }
18 
19 - (id)initWithArray:(NSArray *)array;
20 
21 @property (nonatomic, readonly) NSString *lowercasePath;
22 @property (nonatomic, readonly) DBMetadata *metadata;
23 @property (nonatomic, readonly) NSString *sortKey;
24 @property (nonatomic, readonly) NSDate *timeTaken;
25 @property (nonatomic, readonly) NSString *uniquenessKey;
26 
27 @end