order and payment notifs

This commit is contained in:
2025-12-20 21:46:15 +03:30
parent e0df01053b
commit cb532a7941
5 changed files with 47 additions and 20 deletions
@@ -1,8 +1,12 @@
import { PaymentMethodEnum } from "../interface/payment";
export class paymentSucceedEvent {
constructor(
public readonly orderId: string,
public readonly restaurantId: string,
public readonly orderNumber: string,
public readonly paymentMethod: PaymentMethodEnum,
public readonly total:number
) {}
}