// // PNObjectModel.h // Pods // // Created by Giuseppe Nucifora on 16/01/16. // // #import @protocol PNObjectPersistency @required - (BOOL) initObjectPersistency; @end @interface PNObjectModel : NSObject @property (nonatomic, assign) id _Nonnull persistencyDelegate; + (_Nonnull instancetype) sharedInstance; /** * <#Description#> * * @param object PNObject Subclass to save * * @return return It return the object if the save was successful. * @return return NSError */ - (id _Nonnull) saveLocally:(id _Nonnull) object; /** * <#Description#> * * @param object PNObject Subclass add list objects and save the list * * @return <#return value description#> */ - (BOOL) removeObjectLocally:(id _Nonnull) object; - (id _Nonnull) fetchObjectsWithClass:(Class _Nonnull) class; @end