AutoCat2/AutoCatCore/Models/vmodels/VEngine.swift

11 lines
285 B
Swift

import RealmSwift
public final class VEngine: Object, Decodable {
@Persisted public var number: String?
@Persisted public var volume: Int64?
@Persisted public var powerHp: Float?
@Persisted public var powerKw: Float?
@Persisted public var fuelType: String?
}