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.

34 lines
907 B

1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Text.Json.Serialization;
  5. namespace GMCabsDriverAssistant.Models
  6. {
  7. public class ShiftResponseDto
  8. {
  9. [JsonPropertyName("userID")]
  10. public int UserID { get; set; }
  11. [JsonPropertyName("startDate")]
  12. public DateTime? StartDate { get; set; }
  13. [JsonPropertyName("endDate")]
  14. public DateTime? EndDate { get; set; }
  15. [JsonPropertyName("networkVehicleID")]
  16. public int NetworkVehicleID { get; set; }
  17. [JsonPropertyName("carNumber")]
  18. public string CarNumber { get; set; }
  19. [JsonPropertyName("imei")]
  20. public string Imei { get; set; }
  21. [JsonPropertyName("startSuburb")]
  22. public string StartSuburb { get; set; }
  23. [JsonPropertyName("endSuburb")]
  24. public string EndSuburb { get; set; }
  25. }
  26. }