diff options
Diffstat (limited to 'SmartDeviceLink/SDLImageField.h')
-rw-r--r-- | SmartDeviceLink/SDLImageField.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLImageField.h b/SmartDeviceLink/SDLImageField.h index 69932c5c4..429e77343 100644 --- a/SmartDeviceLink/SDLImageField.h +++ b/SmartDeviceLink/SDLImageField.h @@ -8,10 +8,14 @@ @class SDLImageResolution; +NS_ASSUME_NONNULL_BEGIN + @interface SDLImageField : SDLRPCStruct -@property (strong) SDLImageFieldName name; -@property (strong) NSMutableArray<SDLFileType> *imageTypeSupported; -@property (strong) SDLImageResolution *imageResolution; +@property (strong, nonatomic) SDLImageFieldName name; +@property (strong, nonatomic) NSMutableArray<SDLFileType> *imageTypeSupported; +@property (nullable, strong, nonatomic) SDLImageResolution *imageResolution; @end + +NS_ASSUME_NONNULL_END |