Wheel Spin

This commit is contained in:
efrilm
2025-09-17 01:35:01 +07:00
parent 1c5740a85b
commit 966081214f
9 changed files with 1158 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
export interface RewardCatalog {
export interface RewardCatalogType {
id: string
name: string
description?: string
+10
View File
@@ -0,0 +1,10 @@
export interface WheelSpinType {
id: string
name: string
weight: number
omset: number
fallback: boolean
stock?: number
createdAt: Date
updatedAt: Date
}