diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2026-03-21 00:36:25 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2026-03-21 00:36:25 +0100 |
| commit | f1b0b5f7ceaf6d23ae347e12cf29eef617c7dc9b (patch) | |
| tree | d92c6075d019d87fd03482774050d7fc8981a5aa /src/Enmarcha.Sources.OpenTripPlannerGql | |
| parent | 2ef155c0c68208eccf968919fea12133698b50a9 (diff) | |
feat: enhance geocoding and stop search with performance metrics and improved response handling
Diffstat (limited to 'src/Enmarcha.Sources.OpenTripPlannerGql')
| -rw-r--r-- | src/Enmarcha.Sources.OpenTripPlannerGql/Queries/StopTile.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Enmarcha.Sources.OpenTripPlannerGql/Queries/StopTile.cs b/src/Enmarcha.Sources.OpenTripPlannerGql/Queries/StopTile.cs index 6079ea3..04e28d4 100644 --- a/src/Enmarcha.Sources.OpenTripPlannerGql/Queries/StopTile.cs +++ b/src/Enmarcha.Sources.OpenTripPlannerGql/Queries/StopTile.cs @@ -31,6 +31,7 @@ public class StopTileRequestContent : IGraphRequest<StopTileRequestContent.TileR gtfsId code name + desc lat lon routes {{ @@ -61,6 +62,9 @@ public class StopTileResponse : AbstractGraphResponse [JsonPropertyName("name")] public required string Name { get; set; } + [JsonPropertyName("desc")] + public string? Desc { get; set; } + [JsonPropertyName("lat")] public required double Lat { get; set; } |
