17 lines
292 B
C#
17 lines
292 B
C#
using YLErp.Models;
|
|
|
|
namespace YLErp.Abstract
|
|
{
|
|
/// <summary>
|
|
/// 波动率数据接口
|
|
/// </summary>
|
|
public interface IVolatility
|
|
{
|
|
string VolSurfaceMode { get; }
|
|
|
|
string InterpolationMethod { get; }
|
|
|
|
List<SingleVol> VolTable { get; }
|
|
}
|
|
}
|