diff options
Diffstat (limited to 'src/Costasdev.Busurbano.Backend/Types')
| -rw-r--r-- | src/Costasdev.Busurbano.Backend/Types/Planner/PlannerResponse.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Costasdev.Busurbano.Backend/Types/Planner/PlannerResponse.cs b/src/Costasdev.Busurbano.Backend/Types/Planner/PlannerResponse.cs index a4e54d7..f88942f 100644 --- a/src/Costasdev.Busurbano.Backend/Types/Planner/PlannerResponse.cs +++ b/src/Costasdev.Busurbano.Backend/Types/Planner/PlannerResponse.cs @@ -16,8 +16,8 @@ public class Itinerary public double TransitTimeSeconds { get; set; } public double WaitingTimeSeconds { get; set; } public List<Leg> Legs { get; set; } = []; - public double? CashFareEuro { get; set; } - public double? CardFareEuro { get; set; } + public decimal? CashFareEuro { get; set; } + public decimal? CardFareEuro { get; set; } } public class Leg @@ -54,6 +54,7 @@ public class PlannerPlace public double Lon { get; set; } public string? StopId { get; set; } public string? StopCode { get; set; } + public string? ZoneId { get; set; } } public class PlannerGeometry |
