verify cash paymnt
This commit is contained in:
@@ -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,
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user