diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-12-28 00:17:11 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-12-28 00:17:11 +0100 |
| commit | 1fd17d4d07d25a810816e4e38ddc31ae72b8c91a (patch) | |
| tree | acd8e54ac1abea4fa9ba23430f4a80aba743aa11 /src/Costasdev.Busurbano.Backend/Types | |
| parent | fbd2c1aa2dd25dd61483553d114c484060f71bd6 (diff) | |
Basic fare calculations for Galicia (Xunta)
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 |
