Skip to content

Commit

Permalink
Add Stop model for GTFS_Static (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksharma-xyz authored Aug 30, 2024
1 parent 181ccf3 commit 62d6751
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package xyz.ksharma.krail.model.gtfs_static

data class Stop(
val stop_id: String,
val stop_code: String,
val stop_name: String,
val stop_desc: String,
val stop_lat: String,
val stop_lon: String,
val zone_id: String,
val stop_url: String,
val location_type: String,
val parent_station: String,
val stop_timezone: String,
val wheelchair_boarding: String,
)

0 comments on commit 62d6751

Please sign in to comment.