summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDialNumberResponse.m
blob: 2d38855b06f4e78940231abc8dca52b423d61dbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  SDLDialNumberResponse.m
//  SmartDeviceLink-iOS

#import "SDLDialNumberResponse.h"

#import "NSMutableDictionary+Store.h"
#import "SDLNames.h"


@implementation SDLDialNumberResponse

- (instancetype)init {
    if (self = [super initWithName:SDLNameDialNumber]) {
    }
    return self;
}

@end