forked from coding/Coding-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectFolders.h
More file actions
executable file
·27 lines (22 loc) · 833 Bytes
/
ProjectFolders.h
File metadata and controls
executable file
·27 lines (22 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// ProjectFolders.h
// Coding_iOS
//
// Created by Ease on 14/11/13.
// Copyright (c) 2014年 Coding. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ProjectFolder.h"
@interface ProjectFolders : NSObject
@property (readwrite, nonatomic, strong) NSMutableArray *list;
//@property (strong, nonatomic, readonly) NSArray *useToMoveList;
@property (readwrite, nonatomic, strong) NSNumber *page, *pageSize, *totalPage, *totalRow;
@property (strong, nonatomic) NSDictionary *propertyArrayMap;
@property (assign, nonatomic) BOOL isLoading;
+ (ProjectFolders *)emptyFolders;
- (BOOL)isEmpty;
- (ProjectFolder *)hasFolderWithId:(NSNumber *)file_id;
- (NSString *)toFoldersPathWithObj:(NSNumber *)project_id;
- (NSDictionary *)toFoldersParams;
- (NSString *)toFoldersCountPathWithObj:(NSNumber *)project_id;
@end