using System.Text.Json.Serialization; namespace Enmarcha.Backend.Types.Arrivals; public class StopArrivalsResponse { [JsonPropertyName("stopCode")] public required string StopCode { get; set; } [JsonPropertyName("stopName")] public required string StopName { get; set; } [JsonPropertyName("stopLocation")] public Position? StopLocation { get; set; } [JsonPropertyName("routes")] public List Routes { get; set; } = []; [JsonPropertyName("arrivals")] public List Arrivals { get; set; } = []; [JsonPropertyName("usage")] public List? Usage { get; set; } }