init
This commit is contained in:
@@ -0,0 +1,63 @@
|
||||
export interface UserData {
|
||||
phone: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
restaurantSlug: string;
|
||||
birthDate: string;
|
||||
marriageDate: string;
|
||||
isActive: boolean;
|
||||
gender: boolean;
|
||||
wallet: number;
|
||||
points: number;
|
||||
}
|
||||
|
||||
export const usersData: UserData[] = [
|
||||
{
|
||||
phone: '09362532122',
|
||||
firstName: 'مرتضی',
|
||||
lastName: 'مرتضایی',
|
||||
restaurantSlug: 'zhivan',
|
||||
birthDate: '1990-01-01',
|
||||
marriageDate: '2015-01-01',
|
||||
isActive: true,
|
||||
gender: true,
|
||||
wallet: 250000,
|
||||
points: 100,
|
||||
},
|
||||
{
|
||||
phone: '09185290775',
|
||||
firstName: 'حمید',
|
||||
lastName: 'ضرغامی',
|
||||
restaurantSlug: 'boote',
|
||||
birthDate: '1992-01-01',
|
||||
marriageDate: '2017-01-01',
|
||||
isActive: true,
|
||||
gender: true,
|
||||
wallet: 250000,
|
||||
points: 100,
|
||||
},
|
||||
{
|
||||
phone: '09129283395',
|
||||
firstName: 'مهرداد',
|
||||
lastName: 'مظفری',
|
||||
restaurantSlug: 'zhivan',
|
||||
birthDate: '1988-01-01',
|
||||
marriageDate: '2014-01-01',
|
||||
isActive: true,
|
||||
gender: true,
|
||||
wallet: 250000,
|
||||
points: 100,
|
||||
},
|
||||
{
|
||||
phone: '09184317567',
|
||||
firstName: 'مارال',
|
||||
lastName: 'صادقی',
|
||||
restaurantSlug: 'boote',
|
||||
birthDate: '1995-01-01',
|
||||
marriageDate: '2020-01-01',
|
||||
isActive: true,
|
||||
gender: false,
|
||||
wallet: 250000,
|
||||
points: 100,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user