planner
This commit is contained in:
10
pkg/types/transfer.go
Normal file
10
pkg/types/transfer.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package types
|
||||
|
||||
type Transfer struct {
|
||||
FromStopID string `json:"from_stop_id" csv:"from_stop_id"`
|
||||
ToStopID string `json:"to_stop_id" csv:"to_stop_id"`
|
||||
TransferType int `json:"transfer_type" csv:"transfer_type"`
|
||||
MinTransferTime int `json:"min_transfer_time" csv:"min_transfer_time"`
|
||||
FromTripID string `json:"from_trip_id" csv:"from_trip_id"`
|
||||
ToTripID string `json:"to_trip_id" csv:"to_trip_id"`
|
||||
}
|
||||
Reference in New Issue
Block a user