diff options
Diffstat (limited to 'SmartDeviceLink/SDLDeleteSubMenu.h')
-rw-r--r-- | SmartDeviceLink/SDLDeleteSubMenu.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLDeleteSubMenu.h b/SmartDeviceLink/SDLDeleteSubMenu.h index e1233f5c5..74a6363a9 100644 --- a/SmartDeviceLink/SDLDeleteSubMenu.h +++ b/SmartDeviceLink/SDLDeleteSubMenu.h @@ -16,6 +16,9 @@ * Since <b>SmartDeviceLink 1.0</b><br> * see SDLAddCommand SDLAddSubMenu SDLDeleteCommand */ + +NS_ASSUME_NONNULL_BEGIN + @interface SDLDeleteSubMenu : SDLRPCRequest - (instancetype)initWithId:(UInt32)menuId; @@ -24,6 +27,8 @@ * @abstract the MenuID that identifies the SDLSubMenu to be delete * @discussion <b>Notes: </b>Min Value: 0; Max Value: 2000000000 */ -@property (strong) NSNumber<SDLInt> *menuID; +@property (strong, nonatomic) NSNumber<SDLInt> *menuID; @end + +NS_ASSUME_NONNULL_END |