using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayOpenPublicThirdCustomerServiceModel Data Structure.
///
[Serializable]
public class AlipayOpenPublicThirdCustomerServiceModel : AopObject
{
///
/// 服务窗商户在渠道商处对应的用户id
///
[JsonProperty("channel_uid")]
public string ChannelUid { get; set; }
}
}