mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
c0024ec6b1
Good coding practices applied only, architecture and logic were not altered.
24 lines
332 B
C++
24 lines
332 B
C++
#pragma once
|
|
|
|
#include <QJsonValue>
|
|
#include <QString>
|
|
#include <QVector>
|
|
|
|
namespace Wallets
|
|
{
|
|
class WalletTokenDto
|
|
{
|
|
public:
|
|
QString name;
|
|
QString address;
|
|
QString symbol;
|
|
int decimals;
|
|
bool hasIcon;
|
|
QString color;
|
|
bool isCustom;
|
|
float balance;
|
|
float currencyBalance;
|
|
};
|
|
|
|
} // namespace Wallets
|