31 lines
734 B
C#
31 lines
734 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// ExtraInfoVO Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ExtraInfoVO : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 是否是taomaomao好友关系
|
|
/// </summary>
|
|
[XmlElement("maomao_friend")]
|
|
public bool MaomaoFriend { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否注册taomaomao游戏
|
|
/// </summary>
|
|
[XmlElement("maomao_register")]
|
|
public bool MaomaoRegister { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支付宝对应的taobao_id
|
|
/// </summary>
|
|
[XmlElement("taobao_id")]
|
|
public string TaobaoId { get; set; }
|
|
}
|
|
}
|