// // SDLDialNumberResponse.m // SmartDeviceLink-iOS #import "SDLDialNumberResponse.h" #import "SDLNames.h" @implementation SDLDialNumberResponse - (instancetype)init { if (self = [super initWithName:NAMES_DialNumber]) { } return self; } - (instancetype)initWithDictionary:(NSMutableDictionary *)dict { if (self = [super initWithDictionary:dict]) { } return self; } @end