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.

28 lines
691 B

1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.Json.Serialization;
  6. using System.Threading.Tasks;
  7. namespace GMCabsDriverAssistantSolution.Models.Rydo
  8. {
  9. public class AcceptDeclineBookingRequest
  10. {
  11. #region Properties
  12. [JsonPropertyName("driver_id")]
  13. public Guid DriverId { get; set; }
  14. [JsonPropertyName("driver_latitude")]
  15. public double DriverLatitude { get; set; }
  16. [JsonPropertyName("driver_longitude")]
  17. public double DriverLongitude { get; set; }
  18. [JsonPropertyName("driver_source")]
  19. public int DriverSource { get; set; }
  20. #endregion
  21. }
  22. }