aboutsummaryrefslogtreecommitdiff
path: root/src/Enmarcha.Backend/Types/Arrivals/BusStopUsagePoint.cs
blob: edb08f4827038c7ebf648be37bfdbceadeee38f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System.Text.Json.Serialization;

namespace Enmarcha.Backend.Types.Arrivals;

public class BusStopUsagePoint
{
    [JsonPropertyName("h")]
    public required int Hour { get; set; }

    [JsonPropertyName("t")]
    public required int Total { get; set; }

    [JsonPropertyName("d")]
    public required int DayOfWeek { get; set; }
}