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


#import "SDLResetGlobalPropertiesResponse.h"

#import "SDLNames.h"

@implementation SDLResetGlobalPropertiesResponse

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

@end