16 lines
392 B
C#
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; }
|
|
}
|
|
} |