Skip to content

Commit

Permalink
update to new data structure
Browse files Browse the repository at this point in the history
fixes #20
  • Loading branch information
zivillian committed Aug 6, 2024
1 parent fec1176 commit c6cbe99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libgwmapi/DTO/Vehicle/Vehicle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,10 @@ public class Vehicle
public string StyleName { get; set; }

[JsonPropertyName("tServiceEndDate")]
public int TServiceEndDate { get; set; }
public long TServiceEndDate { get; set; }

[JsonPropertyName("tServiceStartDate")]
public int TServiceStartDate { get; set; }
public long TServiceStartDate { get; set; }

[JsonPropertyName("tServiceStatus")]
public string TServiceStatus { get; set; }
Expand All @@ -206,7 +206,7 @@ public class Vehicle
public string VTypeName { get; set; }

[JsonPropertyName("vehicleId")]
public int VehicleId { get; set; }
public string VehicleId { get; set; }

[JsonPropertyName("vehicleNick")]
public object VehicleNick { get; set; }
Expand Down

0 comments on commit c6cbe99

Please sign in to comment.