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


#import "SDLCreateInteractionChoiceSetResponse.h"

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

@implementation SDLCreateInteractionChoiceSetResponse

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

@end