using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayInsDataDsbEstimateQueryModel Data Structure.
///
[Serializable]
public class AlipayInsDataDsbEstimateQueryModel : AopObject
{
///
/// 定损单号
///
[JsonProperty("estimate_no")]
public string EstimateNo { get; set; }
///
/// 车架号
///
[JsonProperty("frame_no")]
public string FrameNo { get; set; }
///
/// 车牌号
///
[JsonProperty("license_no")]
public string LicenseNo { get; set; }
}
}