using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayEcoMycarDataserviceViolationinfoShareResponse.
///
public class AlipayEcoMycarDataserviceViolationinfoShareResponse : AopResponse
{
///
/// 车架号
///
[JsonProperty("body_num")]
public string BodyNum { get; set; }
///
/// 发动机号
///
[JsonProperty("engine_num")]
public string EngineNum { get; set; }
///
/// 车辆id
///
[JsonProperty("vehicle_id")]
public string VehicleId { get; set; }
///
/// 车牌
///
[JsonProperty("vi_number")]
public string ViNumber { get; set; }
}
}