Loyalty Page

This commit is contained in:
efrilm
2025-09-17 00:10:14 +07:00
parent ddbd5ba607
commit f527b6f004
8 changed files with 1172 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
export interface LoyaltyType {
id: string
name: string
minimumPurchase: number
pointMultiplier: number
benefits: string[]
createdAt: Date
updatedAt: Date
}