Files
zszq-trs/YLErpDAL/Modules/ApiModule/PricingModule/CustomizedAsianPricing/CustomizedAsianPricingModel.cs
T
2024-05-09 14:06:26 +08:00

22 lines
627 B
C#

namespace YLErp.Modules.ApiModule.PricingModule.CustomizedAsianPricing
{
public class CustomizedAsianPricingModel : OptionPricingModelV2
{
public string ExoticAsianType { get; set; }
public double LockPrice { get; set; }
public DateTime LockObsStartDate { get; set; }
public DateTime LockObsEndDate { get; set; }
public bool IsLocked { get; set; }
public DateTime LockStartDate { get; set; }
public double? AvgPriceRate { get; set; }
public double? FinalPriceSpread { get; set; }
public string Fixings { get; set; }
}
}