23 lines
590 B
C#
23 lines
590 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using YLErp.Modules.CalculationModule;
|
|
|
|
namespace YLErp.Modules.PricingModule.Models
|
|
{
|
|
public class CalcTradesResult
|
|
{
|
|
public Dictionary<int, CalcTradeResult> TradeOptionValueDic { get; set; } = new Dictionary<int, CalcTradeResult>();
|
|
}
|
|
|
|
public class CalcTradeResult
|
|
{
|
|
public double Pv { get; set; }
|
|
public double SinglePv { get; set; }
|
|
public double Pnl { get; set; }
|
|
public double Delta { get; set; }
|
|
}
|
|
}
|