Giuseppe Nucifora c3e77e7a09 - ADD PNObjectConfig Class
- ADD PNObjectSubclassing Protocol
2016-01-08 20:21:22 +01:00

23 lines
271 B
Objective-C

//
// User.m
// Pods
//
// Created by Giuseppe Nucifora on 08/01/16.
//
//
#import "User.h"
@implementation User
- (instancetype) initWithJSON:(NSDictionary *)JSON {
self = [super initWithJSON:JSON];
if (self) {
}
return self;
}
@end