aboutsummaryrefslogtreecommitdiff
path: root/src/Enmarcha.Backend/Types
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2026-04-02 12:38:10 +0200
committerAriel Costas Guerrero <ariel@costas.dev>2026-04-02 12:45:33 +0200
commit1b4f4a674ac533c0b51260ba35ab91dd2cf9486d (patch)
tree9fdaf418bef86c51737bcf203483089c9e2b908b /src/Enmarcha.Backend/Types
parent749e04d6fc2304bb29920db297d1fa4d73b57648 (diff)
Basic push notification system for service alerts
Co-authored-by: Copilot <copilot@github.com>
Diffstat (limited to 'src/Enmarcha.Backend/Types')
-rw-r--r--src/Enmarcha.Backend/Types/Transit/RouteDtos.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Enmarcha.Backend/Types/Transit/RouteDtos.cs b/src/Enmarcha.Backend/Types/Transit/RouteDtos.cs
index 8427ec7..8ce2f90 100644
--- a/src/Enmarcha.Backend/Types/Transit/RouteDtos.cs
+++ b/src/Enmarcha.Backend/Types/Transit/RouteDtos.cs
@@ -9,6 +9,7 @@ public class RouteDto
public string? TextColor { get; set; }
public int? SortOrder { get; set; }
public string? AgencyName { get; set; }
+ public string? AgencyId { get; set; }
public int TripCount { get; set; }
}
@@ -19,6 +20,7 @@ public class RouteDetailsDto
public string? Color { get; set; }
public string? TextColor { get; set; }
public string? AgencyName { get; set; }
+ public string? AgencyId { get; set; }
public List<PatternDto> Patterns { get; set; } = [];
}