27 lines
397 B
C++
27 lines
397 B
C++
#ifndef WALLETTOKENDTO_H
|
|
#define WALLETTOKENDTO_H
|
|
|
|
#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
|
|
|
|
#endif // WALLETTOKENDTO_H
|