using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// RelationVO Data Structure.
///
[Serializable]
public class RelationVO : AopObject
{
///
/// 支付宝账户名称(脱敏)
///
[XmlElement("oppo_account_name")]
public string OppoAccountName { get; set; }
///
/// 唯一标记一个儿童的业务id
///
[XmlElement("oppo_child_id")]
public string OppoChildId { get; set; }
///
/// 头像路径
///
[XmlElement("oppo_head_url")]
public string OppoHeadUrl { get; set; }
///
/// 儿童昵称
///
[XmlElement("oppo_nick_name")]
public string OppoNickName { get; set; }
///
/// 对方真实姓名(脱敏)
///
[XmlElement("oppo_real_name")]
public string OppoRealName { get; set; }
}
}