NewGaoKaoApi/PaymentSDK/AliPay/Domain/FriendListVO.cs

37 lines
870 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>
/// FriendListVO Data Structure.
/// </summary>
[Serializable]
public class FriendListVO : AopObject
{
/// <summary>
/// 头像的服务地址
/// </summary>
[XmlElement("head_img")]
public string HeadImg { get; set; }
/// <summary>
/// 是否双向好友
/// </summary>
[XmlElement("real_friend")]
public bool RealFriend { get; set; }
/// <summary>
/// 用户id
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
/// <summary>
/// 有可能包含emoji表情业务方要注意编码
/// </summary>
[XmlElement("view_name")]
public string ViewName { get; set; }
}
}