mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 22:36:24 +00:00
c0024ec6b1
Good coding practices applied only, architecture and logic were not altered.
25 lines
911 B
C
25 lines
911 B
C
#pragma once
|
|
|
|
// To Do: Currently this gets added to eahc file that its imported into need to create as enums in calss when some works on this potentially
|
|
#include <QString>
|
|
|
|
const QString CHAT_SECTION_ID = "chat";
|
|
const QString CHAT_SECTION_NAME = "Chat";
|
|
const QString CHAT_SECTION_ICON = "chat";
|
|
|
|
const QString WALLET_SECTION_ID = "wallet";
|
|
const QString WALLET_SECTION_NAME = "Wallet";
|
|
const QString WALLET_SECTION_ICON = "wallet";
|
|
|
|
const QString BROWSER_SECTION_ID = "browser";
|
|
const QString BROWSER_SECTION_NAME = "Browser";
|
|
const QString BROWSER_SECTION_ICON = "browser";
|
|
|
|
const QString NODEMANAGEMENT_SECTION_ID = "nodeManagement";
|
|
const QString NODEMANAGEMENT_SECTION_NAME = "Node Management";
|
|
const QString NODEMANAGEMENT_SECTION_ICON = "node";
|
|
|
|
const QString SETTINGS_SECTION_ID = "profileSettings";
|
|
const QString SETTINGS_SECTION_NAME = "Settings";
|
|
const QString SETTINGS_SECTION_ICON = "settings";
|