CCash/fbe/user_model.fbe
EntireTwix 0130f3c971 🎉 FBE
2021-07-14 22:56:10 -07:00

27 lines
No EOL
311 B
Text

package bank_dom
struct Transaction
{
string from = "";
string to = "";
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;
}