19 lines
426 B
Swift
19 lines
426 B
Swift
//
|
|
// VehicleEngineDto.swift
|
|
// AutoCatCore
|
|
//
|
|
// Created by Selim Mustafaev on 12.06.2024.
|
|
// Copyright © 2024 Selim Mustafaev. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct VehicleEngineDto: Decodable, Sendable, Equatable, Hashable {
|
|
|
|
public var number: String?
|
|
public var volume: Int? = 0
|
|
public var powerHp: Float? = 0
|
|
public var powerKw: Float? = 0
|
|
public var fuelType: String?
|
|
}
|