Files
zszq-trs/YLErpDAL/Model/SwapTradePushModel.cs
2024-05-09 14:06:26 +08:00

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; }
}
}