20 lines
435 B
C#
20 lines
435 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Model
|
|
{
|
|
public class SwapTradePushModel
|
|
{
|
|
public trade trade { get; set; }
|
|
public trade_extend tradeExtend { get; set; }
|
|
public List<swap_position> positions { get; set; }
|
|
|
|
public string extNo { get; set; }
|
|
|
|
public Client Client { get; set; }
|
|
}
|
|
}
|