diff options
Diffstat (limited to 'SmartDeviceLink/SDLImageResolution.h')
-rw-r--r-- | SmartDeviceLink/SDLImageResolution.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLImageResolution.h b/SmartDeviceLink/SDLImageResolution.h index ca086ea61..d9b25eec7 100644 --- a/SmartDeviceLink/SDLImageResolution.h +++ b/SmartDeviceLink/SDLImageResolution.h @@ -4,9 +4,13 @@ #import "SDLRPCMessage.h" +NS_ASSUME_NONNULL_BEGIN + @interface SDLImageResolution : SDLRPCStruct -@property (strong) NSNumber<SDLInt> *resolutionWidth; -@property (strong) NSNumber<SDLInt> *resolutionHeight; +@property (strong, nonatomic) NSNumber<SDLInt> *resolutionWidth; +@property (strong, nonatomic) NSNumber<SDLInt> *resolutionHeight; @end + +NS_ASSUME_NONNULL_END |