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


#import "SDLSetGlobalPropertiesResponse.h"

#import "SDLNames.h"

@implementation SDLSetGlobalPropertiesResponse

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

@end