CCash/fbe/user_model.fbe
2022-11-28 17:06:13 -08:00

27 lines
No EOL
327 B
Text

package bank_dom
struct Transaction
{
string counterparty = "";
bool receiving = false;
uint32 amount = 0;
timestamp time;
}
struct Logs
{
Transaction[] data;
}
struct User
{
uint32 balance = 0;
uint64 password = 0;
Logs? logs = null;
}
struct Global
{
string[] keys;
User[] users;
}