Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayOpenPublicThirdCustomerServiceResponse.cs

16 lines
392 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
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; }
}
}