64 lines
1.3 KiB
TypeScript
64 lines
1.3 KiB
TypeScript
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: 0,
|
|
points: 0,
|
|
},
|
|
{
|
|
phone: '09185290775',
|
|
firstName: 'حمید',
|
|
lastName: 'ضرغامی',
|
|
restaurantSlug: 'boote',
|
|
birthDate: '1992-01-01',
|
|
marriageDate: '2017-01-01',
|
|
isActive: true,
|
|
gender: true,
|
|
wallet: 0,
|
|
points: 0,
|
|
},
|
|
{
|
|
phone: '09129283395',
|
|
firstName: 'مهرداد',
|
|
lastName: 'مظفری',
|
|
restaurantSlug: 'zhivan',
|
|
birthDate: '1988-01-01',
|
|
marriageDate: '2014-01-01',
|
|
isActive: true,
|
|
gender: true,
|
|
wallet: 0,
|
|
points: 0,
|
|
},
|
|
{
|
|
phone: '09184317567',
|
|
firstName: 'مارال',
|
|
lastName: 'صادقی',
|
|
restaurantSlug: 'boote',
|
|
birthDate: '1995-01-01',
|
|
marriageDate: '2020-01-01',
|
|
isActive: true,
|
|
gender: false,
|
|
wallet: 0,
|
|
points: 0,
|
|
},
|
|
];
|