Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayOpenPublicThirdCustomerServiceModel.cs

18 lines
429 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayOpenPublicThirdCustomerServiceModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicThirdCustomerServiceModel : AopObject
{
/// <summary>
/// 服务窗商户在渠道商处对应的用户id
/// </summary>
[JsonProperty("channel_uid")]
public string ChannelUid { get; set; }
}
}