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


#import "SDLRPCResponse.h"

/**
 * Slider Response is sent, when Slider has been called
 *
 * Since SmartDeviceLink 2.0
 */
@interface SDLSliderResponse : SDLRPCResponse

/**
 * @abstract The selected position of the slider.
 */
@property (strong, nonatomic) NSNumber<SDLInt> *sliderPosition;

@end