mcu_hi3321_watch/application/wearable/nativeapp/nativeui/settings/include/SettingItem.h
2025-05-26 20:15:20 +08:00

22 lines
381 B
C++

/*
* 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 <cstdint>
namespace OHOS {
typedef struct {
AppViewId viewId;
const char *icon;
const char *label;
bool hasSecondMenu;
bool enableSlideBack;
} SettingItem;
}
#endif