忽略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,37 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ContactPersonInfo Data Structure.
/// </summary>
[Serializable]
public class ContactPersonInfo : AopObject
{
/// <summary>
/// 联系人邮箱地址,入驻申请审核结果会发送至该邮箱
/// </summary>
[JsonProperty("contact_email")]
public string ContactEmail { get; set; }
/// <summary>
/// 联系人手机号,入驻申请结果会通过短信的形式发送至该手机号码
/// </summary>
[JsonProperty("contact_mobile")]
public string ContactMobile { get; set; }
/// <summary>
/// 企业联系人名称
/// </summary>
[JsonProperty("contact_name")]
public string ContactName { get; set; }
/// <summary>
/// 联系人类型MERCHANT_CONTACT (普通联系人),DATA_RETURN (数据反馈联系人),PROT_CONTACT(客服人员),OBJECTION_HANDLE
/// (异议处理联系人)如不填默认为MERCHANT_CONTACT
/// </summary>
[JsonProperty("contact_type")]
public string ContactType { get; set; }
}
}