revenue chart

This commit is contained in:
2025-12-22 00:10:17 +03:30
parent 2f409e5c8c
commit 746c822778
4 changed files with 187 additions and 6 deletions
@@ -1,13 +1,13 @@
import { PaymentMethodEnum } from "../interface/payment";
export class paymentSucceedEvent {
export class paymentSucceedEvent {
constructor(
public readonly orderId: string,
public readonly restaurantId: string,
public readonly orderNumber: string,
public readonly paymentMethod: PaymentMethodEnum,
public readonly total:number
) {}
public readonly total: number
) { }
}