using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Modules.PricingModule.Models
{
public class CalcTradesRequest
{
///
/// 试算交易id
///
public List TradeIds { get; set; }
///
/// 试算标的价格
///
public Dictionary PricesDic { get; set; } = new Dictionary();
///
/// 交易标的价格
///
public Dictionary TradePricesDic { get; set; } = new Dictionary();
///
/// 试算波动率
///
public Dictionary VolsDic { get; set; } = new Dictionary();
///
/// 试算日期
///
public DateTime ValueDate { get; set; }
}
}