32 lines
705 B
C#
32 lines
705 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Modules.RiskModule
|
|
{
|
|
public class TradePositionTotalPnLModel
|
|
{
|
|
public DateTime ValueDate { get; set; }
|
|
|
|
public int? TradeId { get; set; }
|
|
|
|
public int ParentTradeId { get; set; }
|
|
|
|
public string UnderlyingCode { get; set; }
|
|
|
|
public string OptionCode { get; set; }
|
|
|
|
public int UnderlyingId { get; set; }
|
|
|
|
public int BookId { get; set; }
|
|
|
|
public string TradeType { get; set; }
|
|
|
|
|
|
public double? AccruedTotalPnL { get; set; }
|
|
public string HedgeUniqueCode { get; internal set; }
|
|
}
|
|
}
|