忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,60 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoMycarCarlibInfoPushModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarCarlibInfoPushModel : AopObject
{
/// <summary>
/// 品牌
/// </summary>
[JsonProperty("brand")]
public string Brand { get; set; }
/// <summary>
/// 排量
/// </summary>
[JsonProperty("cc")]
public string Cc { get; set; }
/// <summary>
/// 厂商
/// </summary>
[JsonProperty("company")]
public string Company { get; set; }
/// <summary>
/// 发动机型号
/// </summary>
[JsonProperty("engine")]
public string Engine { get; set; }
/// <summary>
/// 销售名字
/// </summary>
[JsonProperty("marker")]
public string Marker { get; set; }
/// <summary>
/// 生产年份
/// </summary>
[JsonProperty("prod_year")]
public string ProdYear { get; set; }
/// <summary>
/// 车系
/// </summary>
[JsonProperty("serie")]
public string Serie { get; set; }
/// <summary>
/// 车款
/// </summary>
[JsonProperty("style")]
public string Style { get; set; }
}
}