Yini  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
DBQuota.h
Go to the documentation of this file.
1 //
2 // DBQuota.h
3 // DropboxSDK
4 //
5 // Created by Brian Smith on 5/3/10.
6 // Copyright 2010 Dropbox, Inc. All rights reserved.
7 //
8 
9 
10 @interface DBQuota : NSObject <NSCoding> {
13  long long totalBytes;
14 }
15 
16 - (id)initWithDictionary:(NSDictionary*)dict;
17 
18 @property (nonatomic, readonly) long long normalConsumedBytes;
19 @property (nonatomic, readonly) long long sharedConsumedBytes;
20 @property (nonatomic, readonly) long long totalConsumedBytes;
21 @property (nonatomic, readonly) long long totalBytes;
22 
23 @end