PNObject/Pod/Classes/PNObject.h
Giuseppe Nucifora c3e77e7a09 - ADD PNObjectConfig Class
- ADD PNObjectSubclassing Protocol
2016-01-08 20:21:22 +01:00

24 lines
449 B
Objective-C

//
// PNObject.h
// Pods
//
// Created by Giuseppe Nucifora on 28/12/15.
//
//
#import <Foundation/Foundation.h>
#import "PNObjectSubclassing.h"
#import "PNObjectConfig.h"
@interface PNObject : NSObject <PNObjectSubclassing>
@property (nonatomic, strong) NSString *objID;
@property (nonatomic, strong) NSDate *createdDate;
@property (nonatomic, strong) NSDictionary *objectMapping;
- (instancetype) initWithJSON:(NSDictionary*) JSON;
@end