19 lines
469 B
C#
19 lines
469 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenPublicThirdCustomerServiceModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayOpenPublicThirdCustomerServiceModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 服务窗商户在渠道商处对应的用户id
|
|
/// </summary>
|
|
[XmlElement("channel_uid")]
|
|
public string ChannelUid { get; set; }
|
|
}
|
|
}
|