You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
987 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GMCabsDriverAssistantSolution.ViewModels
  7. {
  8. class CancelledBookingViewModel : BaseViewModel
  9. {
  10. #region Fields
  11. public string pickUpAddress = "";
  12. public string dropUpAddress = "";
  13. #endregion
  14. #region Properties
  15. public string PickUpAddress
  16. {
  17. get => pickUpAddress;
  18. set
  19. {
  20. SetProperty(ref pickUpAddress, value);
  21. }
  22. }
  23. public string DropUpAddress
  24. {
  25. get => dropUpAddress;
  26. set
  27. {
  28. SetProperty(ref dropUpAddress, value);
  29. }
  30. }
  31. #endregion
  32. #region Constructor
  33. public CancelledBookingViewModel()
  34. {
  35. Title = "Booking Cancelled";
  36. }
  37. #endregion
  38. #region Methods
  39. #endregion
  40. }
  41. }