23 lines
271 B
Objective-C
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
|