using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// NetValueVO Data Structure.
///
[Serializable]
public class NetValueVO : AopObject
{
///
/// 基金单位净值,含4位小数
///
[XmlElement("net_value")]
public string NetValue { get; set; }
///
/// 基金净值日期
///
[XmlElement("net_value_date")]
public string NetValueDate { get; set; }
///
/// 七日年化收益率,含5位小数,可以为负
///
[XmlElement("profit_seven_days")]
public string ProfitSevenDays { get; set; }
///
/// 万份收益,含5位小数,可以为负
///
[XmlElement("profit_ten_thousand")]
public string ProfitTenThousand { get; set; }
}
}