import { GTFSTransferTypeEnum } from "../enums/TransferTypeEnum";
export interface ITransferDto {
    from_stop_id: string | null;
    to_stop_id: string | null;
    from_trip_id: string | null;
    to_trip_id: string | null;
    transfer_type: GTFSTransferTypeEnum;
    min_transfer_time: number | null;
    max_waiting_time: number | null;
}
