feat: get cards from backend

This commit is contained in:
2026-06-24 08:35:31 +03:30
parent d837aca96e
commit 108a972761
83 changed files with 593 additions and 38 deletions
@@ -28,6 +28,8 @@ class ProfileEntity {
final int xpInto;
final int xpNext;
final bool vip;
final int rankPoints;
final String rankTier; // bronze..king
final ProfileStats? stats; // null یعنی قفل (غیر VIP)
const ProfileEntity({
@@ -39,6 +41,8 @@ class ProfileEntity {
required this.xpInto,
required this.xpNext,
required this.vip,
required this.rankPoints,
required this.rankTier,
required this.stats,
});
}