24 lines
467 B
Swift
24 lines
467 B
Swift
//
|
|
// VehicleBrandDto.swift
|
|
// AutoCatCore
|
|
//
|
|
// Created by Selim Mustafaev on 12.06.2024.
|
|
// Copyright © 2024 Selim Mustafaev. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct VehicleBrandDto: Decodable, Sendable, Equatable {
|
|
|
|
public var name: VehicleNameDto?
|
|
public var logo: String?
|
|
|
|
public init() { }
|
|
|
|
public init(name: VehicleNameDto?, logo: String?) {
|
|
|
|
self.name = name
|
|
self.logo = logo
|
|
}
|
|
}
|