Files
zszq-trs/Framework/YLErp.Core/Abstract/IVolatility.cs
T
2024-05-09 14:06:26 +08:00

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; }
}
}