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