using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// FriendListVO Data Structure. /// [Serializable] public class FriendListVO : AopObject { /// /// 头像的服务地址 /// [XmlElement("head_img")] public string HeadImg { get; set; } /// /// 是否双向好友 /// [XmlElement("real_friend")] public bool RealFriend { get; set; } /// /// 用户id /// [XmlElement("user_id")] public string UserId { get; set; } /// /// 有可能包含emoji表情,业务方要注意编码 /// [XmlElement("view_name")] public string ViewName { get; set; } } }