feat: refactor code

This commit is contained in:
2026-06-17 12:57:28 +03:30
parent e9f294fa19
commit 519752b478
106 changed files with 3459 additions and 2309 deletions
@@ -0,0 +1,28 @@
/// موجودیتِ کیف‌پول و وضعیت اقتصادیِ کاربر (به‌همراه نام و آواتار برای نوار لابی).
class WalletEntity {
final int coins;
final int tickets;
final int xp;
final int trophies;
final int level;
final int xpIntoLevel;
final int xpForNext;
final bool vip;
final String selectedCard;
final String name;
final String avatar;
const WalletEntity({
required this.coins,
required this.tickets,
required this.xp,
required this.trophies,
required this.level,
required this.xpIntoLevel,
required this.xpForNext,
required this.vip,
required this.selectedCard,
required this.name,
required this.avatar,
});
}