using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// NextUrl Data Structure.
///
[Serializable]
public class NextUrl : AopObject
{
///
/// 小宝账户详情页跳转链接
///
[XmlElement("jump_url")]
public string JumpUrl { get; set; }
///
/// 跳转链接的展示文案
///
[XmlElement("text")]
public string Text { get; set; }
}
}