septastic/libseptastic/src/route_stop.rs
Nicholas Orlowsky be177af6cd
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
many changes
2025-09-12 19:08:22 -04:00

7 lines
151 B
Rust

#[derive(Debug, Clone)]
pub struct RouteStop {
pub route_id: String,
pub stop_id: i64,
pub direction_id: i64,
pub stop_sequence: i64
}