This commit is contained in:
efrilm
2025-09-17 01:45:05 +07:00
parent 966081214f
commit 3d1b6eee39
8 changed files with 1286 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
export interface Campaign {
id: string
name: string
description?: string
minimumPurchase: number
rewardType: 'point' | 'voucher' | 'discount'
rewardValue: number
startDate: Date
endDate: Date
isActive: boolean
createdAt: Date
updatedAt: Date
}