using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.DBModels
{
///
/// 多空组合平仓明细
///
public class SwapLongShortCloseModel
{
public SwapLongShortCloseModel()
{
DealInterests = new List();
DealPositions = new List();
}
///
/// 平仓利息腿信息
///
public List DealInterests { get; set; }
///
/// 平仓浮动腿信息
///
public List DealPositions { get; set; }
}
}