20 lines
455 B
C#
Raw Normal View History

2023-05-04 12:05:13 +05:30
using System.Text.Json.Serialization;
namespace GMCabsDriverAssistant.Services
{
public class ResetDriverPinResponse
{
[JsonPropertyName("type")]
public string Type { get; set; }
[JsonPropertyName("title")]
public string Title { get; set; }
[JsonPropertyName("status")]
public int Status { get; set; }
[JsonPropertyName("traceId")]
public string TraceId { get; set; }
}
}