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.

19 lines
455 B

1 year ago
  1. using System.Text.Json.Serialization;
  2. namespace GMCabsDriverAssistant.Services
  3. {
  4. public class ResetDriverPinResponse
  5. {
  6. [JsonPropertyName("type")]
  7. public string Type { get; set; }
  8. [JsonPropertyName("title")]
  9. public string Title { get; set; }
  10. [JsonPropertyName("status")]
  11. public int Status { get; set; }
  12. [JsonPropertyName("traceId")]
  13. public string TraceId { get; set; }
  14. }
  15. }