feat: add private and profile

This commit is contained in:
2026-06-17 11:32:51 +03:30
parent 02060a4dc0
commit 0827858752
23 changed files with 972 additions and 25 deletions
+9
View File
@@ -41,6 +41,14 @@ type Booster struct {
PriceToman int `json:"price_toman"`
}
// VIPPackage بسته‌ی اشتراک VIP با پول واقعی (IAP).
type VIPPackage struct {
ID string `json:"id"`
Title string `json:"title"`
Months int `json:"months"`
PriceToman int `json:"price_toman"`
}
// TableTier نوع میز: تعداد دست، ورودی، جایزه، XP و جام.
type TableTier struct {
ID string `json:"id"`
@@ -58,6 +66,7 @@ type Catalog struct {
TicketPackages []TicketPackage `json:"ticket_packages"`
CardSkins []CardSkin `json:"card_skins"`
Boosters []Booster `json:"boosters"`
VIPPackages []VIPPackage `json:"vip_packages"`
TableTiers []TableTier `json:"table_tiers"`
}