27 lines
396 B
C
27 lines
396 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 Wallet
|
||
|
|
||
|
#endif // WALLETTOKENDTO_H
|