diff --git a/app/lib/models/wallet_model.dart b/app/lib/models/wallet_model.dart new file mode 100644 index 0000000..98f8e1a --- /dev/null +++ b/app/lib/models/wallet_model.dart @@ -0,0 +1,13 @@ +/// A stub model representing a KidWallet account. +class WalletModel { + /// The current balance in stroops (1 XLM = 10,000,000 stroops). + final int balance; + + /// The Stellar public key address for this wallet. + final String address; + + const WalletModel({ + required this.balance, + required this.address, + }); +} \ No newline at end of file