7 lines
98 B
Swift
7 lines
98 B
Swift
import Foundation
|
|
|
|
struct Station: Codable, Identifiable {
|
|
var id: Int
|
|
var name: String
|
|
}
|