verify cash paymnt

This commit is contained in:
2025-12-19 20:58:19 +03:30
parent 2ce7dda168
commit 465810efc2
8 changed files with 70 additions and 40 deletions
+6
View File
@@ -1,3 +1,5 @@
import { PlanEnum } from 'src/modules/restaurants/interface/plan.interface';
export interface RestaurantData {
name: string;
slug: string;
@@ -18,6 +20,7 @@ export interface RestaurantData {
marriageDateScore: string;
referrerScore: string;
};
plan: PlanEnum.Premium;
}
export const restaurantsData: RestaurantData[] = [
@@ -49,6 +52,7 @@ export const restaurantsData: RestaurantData[] = [
marriageDateScore: '10000',
referrerScore: '10000',
},
plan: PlanEnum.Premium,
},
{
name: 'بوته',
@@ -78,6 +82,7 @@ export const restaurantsData: RestaurantData[] = [
marriageDateScore: '10000',
referrerScore: '10000',
},
plan: PlanEnum.Premium,
},
{
name: 'هنر',
@@ -107,5 +112,6 @@ export const restaurantsData: RestaurantData[] = [
marriageDateScore: '10000',
referrerScore: '10000',
},
plan: PlanEnum.Premium,
},
];