This commit is contained in:
Iliyan Angelov
2025-11-17 23:50:14 +02:00
parent 0c59fe1173
commit a1bd576540
43 changed files with 2598 additions and 359 deletions

View File

@@ -14,6 +14,10 @@ export interface BookingData {
email: string;
phone: string;
};
services?: Array<{
service_id: number;
quantity: number;
}>;
}
export interface Booking {