using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// SocialInfoView Data Structure.
///
[Serializable]
public class SocialInfoView : AopObject
{
///
/// 用户头像链接,如果用户没有设置头像,则返回空
///
[XmlElement("avatar")]
public string Avatar { get; set; }
///
/// 用户昵称,如果用户没有设置昵称,则返回空
///
[XmlElement("nick")]
public string Nick { get; set; }
///
/// 支付宝userId
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}