Files
WhiteNights_iOS/WhiteNights/Models/Station.swift
2025-08-24 14:44:50 +03:00

7 lines
98 B
Swift

import Foundation
struct Station: Codable, Identifiable {
var id: Int
var name: String
}