Khushboo Mehta 42da8a2408 feat(@desktop/wallet): move accounts to cpp
created skeleton for wallet_section
added getAccounts api

fixes #4750
2022-02-16 16:01:37 +01:00

23 lines
404 B
C++

#ifndef WALLETACCOUNTSSERVICEINTERFACE_H
#define WALLETACCOUNTSSERVICEINTERFACE_H
#include <QJsonValue>
#include <QList>
#include <memory>
#include "../app_service.h"
#include "wallet_account.h"
namespace Wallets
{
class ServiceInterface : public AppService
{
public:
virtual QList<WalletAccountDto> getWalletAccounts() = 0;
};
} // namespace Wallets
#endif // WALLETACCOUNTSSERVICEINTERFACE_H