using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// InstallmentValue Data Structure.
///
[Serializable]
public class InstallmentValue : AopObject
{
///
/// 分段值
///
[XmlArray("installment_values")]
[XmlArrayItem("installment_meta_info")]
public List InstallmentValues { get; set; }
}
}