26 lines
492 B
C#
26 lines
492 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AutoCatCore.Model
|
|
{
|
|
public class VehicleEngine
|
|
{
|
|
[JsonProperty("number")]
|
|
public string Number { get; set; }
|
|
|
|
[JsonProperty("volume")]
|
|
public int? Volume { get; set; }
|
|
|
|
[JsonProperty("powerKw")]
|
|
public double? PowerKw { get; set; }
|
|
|
|
[JsonProperty("powerHp")]
|
|
public double? PowerHp { get; set; }
|
|
|
|
[JsonProperty("fuelType")]
|
|
public string FuelType { get; set; }
|
|
}
|
|
}
|