[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/gitroc/Coding-iOS/master/Coding_iOS/Models/ProjectFolders.m [Back]  [Original]

//
//  ProjectFolders.m
//  Coding_iOS
//
//  Created by Ease on 14/11/13.
//  Copyright (c) 2014 Coding. All rights reserved.
//

#import "ProjectFolders.h"

@interface ProjectFolders ()
@property (strong, nonatomic, readwrite) NSArray *useToMoveList;
@end

@implementation ProjectFolders
- (instancetype)init
{
    self = [super init];
    if (self) {
        _propertyArrayMap = [NSDictionary dictionaryWithObjectsAndKeys:
                             @"ProjectFolder", @"list", nil];
        _list = [NSMutableArray array];
        _isLoading = NO;
    }
    return self;
}
+ (ProjectFolders *)emptyFolders{
    return [[ProjectFolders alloc] init];
}
- (BOOL)isEmpty{
    return (!self.list || self.list.count 

Web Proxy Viewer  |  New URL  |  Original Page