AutoCat/AutoCatCore/Models/DTO/VehicleEngineDto.swift

19 lines
405 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 {
public var number: String?
public var volume: Int? = 0
public var powerHp: Float? = 0
public var powerKw: Float? = 0
public var fuelType: String?
}