-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstants.cs
56 lines (54 loc) · 2.13 KB
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
namespace GeneralTransitFeed
{
internal static class Constants
{
internal static class Fields
{
internal const string Date = "date";
internal const string DepartureTime = "departure_time";
internal const string DirectionId = "direction_id";
internal const string DropOffType = "drop_off_type";
internal const string EndDate = "end_date";
internal const string ExceptionType = "exception_type";
internal const string Friday = "friday";
internal const string LocationType = "location_type";
internal const string Monday = "monday";
internal const string ParentStation = "parent_station";
internal const string PickupType = "pickup_type";
internal const string PlatformCode = "platform_code";
internal const string RouteColor = "route_color";
internal const string RouteId = "route_id";
internal const string RouteLongName = "route_long_name";
internal const string RouteShortName = "route_short_name";
internal const string RouteType = "route_type";
internal const string Saturday = "saturday";
internal const string ServiceId = "service_id";
internal const string StartDate = "start_date";
internal const string StopCode = "stop_code";
internal const string StopId = "stop_id";
internal const string StopLat = "stop_lat";
internal const string StopLon = "stop_lon";
internal const string StopName = "stop_name";
internal const string StopSequence = "stop_sequence";
internal const string Sunday = "sunday";
internal const string Thursday = "thursday";
internal const string TripHeadsign = "trip_headsign";
internal const string TripId = "trip_id";
internal const string Tuesday = "tuesday";
internal const string Wednesday = "wednesday";
}
internal static class Files
{
internal const string Calendar = "calendar.txt";
internal const string CalendarDates = "calendar_dates.txt";
internal const string Routes = "routes.txt";
internal const string Stops = "stops.txt";
internal const string StopTimes = "stop_times.txt";
internal const string Trips = "trips.txt";
}
internal static class Formats
{
internal const string Date = "yyyyMMdd";
}
}
}