// SDLSetGlobalPropertiesResponse.m // #import "SDLSetGlobalPropertiesResponse.h" #import "SDLNames.h" @implementation SDLSetGlobalPropertiesResponse - (instancetype)init { if (self = [super initWithName:NAMES_SetGlobalProperties]) { } return self; } - (instancetype)initWithDictionary:(NSMutableDictionary *)dict { if (self = [super initWithDictionary:dict]) { } return self; } @end