mirror of
https://github.com/logos-blockchain/lez-explorer-ui.git
synced 2026-07-30 11:23:25 +00:00
12 lines
170 B
C
12 lines
170 B
C
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
struct Account {
|
|
QString accountId;
|
|
QString programOwner;
|
|
QString balance;
|
|
QString nonce;
|
|
int dataSizeBytes = 0;
|
|
};
|