/* * Copyright (c) CompanyNameMagicTag 2021-2021. All rights reserved. * Description: SettingItem.h * Author: * Create: 2021-11-23 */ #ifndef SETTING_ITEM_H #define SETTING_ITEM_H #include namespace OHOS { typedef struct { AppViewId viewId; const char *icon; const char *label; bool hasSecondMenu; bool enableSlideBack; } SettingItem; } #endif