AutoCat/AutoCatCore/Models/VehicleRegion.swift

11 lines
260 B
Swift

import Foundation
public struct VehicleRegion: Codable, Hashable, Sendable {
public var name: String
public var codes: [Int]
public static func == (lhs: VehicleRegion, rhs: VehicleRegion) -> Bool {
return lhs.name == rhs.name
}
}