using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// RelationCombinedVO Data Structure.
///
[Serializable]
public class RelationCombinedVO : AopObject
{
///
/// 扩展信息
///
[XmlElement("ext_info")]
public ExtraInfoVO ExtInfo { get; set; }
///
/// 支付宝头像
///
[XmlElement("head_img")]
public string HeadImg { get; set; }
///
/// 是否支付宝双向好友
///
[XmlElement("real_friend")]
public bool RealFriend { get; set; }
///
/// 支付宝userid
///
[XmlElement("user_id")]
public string UserId { get; set; }
///
/// 有可能包含emoji表情,业务方要注意编码
///
[XmlElement("view_name")]
public string ViewName { get; set; }
}
}