summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLHeadLampStatus.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLHeadLampStatus.h')
-rw-r--r--SmartDeviceLink/SDLHeadLampStatus.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLHeadLampStatus.h b/SmartDeviceLink/SDLHeadLampStatus.h
index 5e8e45465..f695fdb2d 100644
--- a/SmartDeviceLink/SDLHeadLampStatus.h
+++ b/SmartDeviceLink/SDLHeadLampStatus.h
@@ -17,13 +17,13 @@ NS_ASSUME_NONNULL_BEGIN
/**
* @abstract A boolean value. Status of the low beam lamps.
*/
-@property (strong) NSNumber<SDLBool> *lowBeamsOn;
+@property (strong, nonatomic) NSNumber<SDLBool> *lowBeamsOn;
/**
* @abstract A boolean value. Status of the high beam lamps.
*/
-@property (strong) NSNumber<SDLBool> *highBeamsOn;
+@property (strong, nonatomic) NSNumber<SDLBool> *highBeamsOn;
-@property (nullable, strong) SDLAmbientLightStatus ambientLightSensorStatus;
+@property (nullable, strong, nonatomic) SDLAmbientLightStatus ambientLightSensorStatus;
@end