using YLErp.Models; namespace YLErp.Abstract { /// /// 波动率数据接口 /// public interface IVolatility { string VolSurfaceMode { get; } string InterpolationMethod { get; } List VolTable { get; } } }