22 lines
472 B
C#
22 lines
472 B
C#
namespace YLErp.Model
|
|
{
|
|
public class trade_swap_flow_group
|
|
{
|
|
public string UnderlyingCode { get; set; }
|
|
|
|
public double BuyLots { get; set; }
|
|
|
|
public double SellLots { get; set; }
|
|
|
|
public double Lots { get; set; }
|
|
|
|
public double SumBuySpotPrice { get; set; }
|
|
|
|
public double SumSellSpotPrice { get; set; }
|
|
|
|
public double SumSpotPrice { get; set; }
|
|
|
|
public trade_swap_flow flow { get; set; }
|
|
}
|
|
}
|