feat: add private and profile
This commit is contained in:
@@ -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"`
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user