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


#import "SDLDeleteCommandResponse.h"

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

@implementation SDLDeleteCommandResponse

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

@end