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.

18 lines
352 B

1 year ago
  1. namespace GMCabsDriverAssistant.Enums
  2. {
  3. public enum BookingStatus
  4. {
  5. None,
  6. Scheduled,
  7. Processing,
  8. NoDriverAvailable,
  9. UserCancelled,
  10. AdminCancelled,
  11. Accepted,
  12. PassengerCollected,
  13. DriverCancelled,
  14. CustomerNoShow,
  15. Completed,
  16. SystemCancelled
  17. }
  18. }