emit order created event

This commit is contained in:
2025-12-19 19:32:16 +03:30
parent 589b2d05e8
commit 2ce7dda168
7 changed files with 281 additions and 7 deletions
@@ -0,0 +1,9 @@
export class paymentSucceedEvent {
constructor(
public readonly orderId: string,
public readonly restaurantId: string,
public readonly orderNumber: string,
) {}
}