Advertisement
Guest User

Untitled

a guest
Mar 9th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. user = {
  2. id :'',
  3. fullName:'',
  4. email:'',
  5. password:"",
  6. image:'',
  7. defaultRoom:'',
  8. phone:'',
  9. isAdmin:'',
  10. }
  11.  
  12. product = {
  13. id:'',
  14. productName:'',
  15. price:'',
  16. categoryName:'',
  17. isAvailable:'',
  18. image:'',
  19. }
  20.  
  21. order ={
  22. id:'',
  23. userFullName :'',
  24. notes:'',
  25. orderTotal:'',
  26. orderStatus:'',
  27. dateStamp:'',
  28. roomId:'',
  29. orderBody:[{
  30. productName:'',
  31. price:'',
  32. quantity:'',
  33. }]
  34. }
  35. rooms=[{
  36. roomId:'',
  37. roomName:''
  38. }]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement