NewGaoKaoApi/PaymentSDK/AliPay/Domain/BcBusinessUserInfo.cs

31 lines
822 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// BcBusinessUserInfo Data Structure.
/// </summary>
[Serializable]
public class BcBusinessUserInfo : AopObject
{
/// <summary>
/// BC互动B端实体对应的实际B端操作人员的头像地址
/// </summary>
[XmlElement("logo")]
public string Logo { get; set; }
/// <summary>
/// BC互动B端实体对应的实际B端操作人员的用户名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// BC互动B端实体对应的实际B端操作人员的用户帐号id
/// </summary>
[XmlElement("uid")]
public string Uid { get; set; }
}
}