using YLErp.Abstract;
namespace YLErp.Models
{
///
///
///
public class VolatilityImpl : IVolatility
{
///
/// 默认:MoneynessVol
///
public string VolSurfaceMode { get; set; } = "MoneynessVol";
///
/// 默认:BiLinear
///
public string InterpolationMethod { get; set; } = "BiLinear";
///
///
///
public List VolTable { get; set; }
}
}