// // FileChanges.m // Coding_iOS // // Created by Ease on 15/6/2. // Copyright (c) 2015年 Coding. All rights reserved. // #import "FileChanges.h" @implementation FileChanges - (instancetype)init { self = [super init]; if (self) { _propertyArrayMap = [NSDictionary dictionaryWithObjectsAndKeys: @"FileChange", @"paths", nil]; } return self; } @end