Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayOpenPublicThirdCustomerServiceResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

16 lines
392 B
C#

using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayOpenPublicThirdCustomerServiceResponse.
/// </summary>
public class AlipayOpenPublicThirdCustomerServiceResponse : AopResponse
{
/// <summary>
/// 授权给第三方渠道商的服务窗名称
/// </summary>
[JsonProperty("public_name")]
public string PublicName { get; set; }
}
}