Initial commit

This commit is contained in:
15lu.akari
2025-08-24 14:44:50 +03:00
parent dca1ae410b
commit 5a583d9415
50 changed files with 2019 additions and 17 deletions

View File

@ -0,0 +1,27 @@
import Foundation
// MARK: - Stop
struct Stop: Identifiable, Codable {
let id: Int
let name: String
}
// MARK: - StopDetail
struct StopDetail: Identifiable, Codable {
let id: Int
let name: String
let transfers: Transfers
}
// MARK: - Transfers
struct Transfers: Codable {
let tram: String?
let trolleybus: String?
let bus: String?
let train: String?
let metroRed: String?
let metroGreen: String?
let metroBlue: String?
let metroPurple: String?
let metroOrange: String?
}