This commit is contained in:
efrilm
2025-09-17 00:56:56 +07:00
parent f527b6f004
commit 1c5740a85b
8 changed files with 1335 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
export interface RewardCatalog {
id: string
name: string
description?: string
pointCost: number
stock?: number
isActive: boolean
validUntil?: Date
imageUrl?: string
createdAt: Date
updatedAt: Date
}