16 lines
322 B
Swift
16 lines
322 B
Swift
//
|
|
// VehicleNameDto.swift
|
|
// AutoCatCore
|
|
//
|
|
// Created by Selim Mustafaev on 12.06.2024.
|
|
// Copyright © 2024 Selim Mustafaev. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct VehicleNameDto: Codable, Sendable, Equatable, Hashable {
|
|
|
|
public var original: String?
|
|
public var normalized: String?
|
|
}
|