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


#import "SDLSubscribeButtonResponse.h"

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

@implementation SDLSubscribeButtonResponse

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

@end