Files
zszq-trs/YLErpDAL/Model/TradeClientCashCalcResp.cs
T

19 lines
387 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Model
{
/// <summary>
/// trs下单假成交交易计算可用资金返回
/// </summary>
public class TradeClientCashCalcResp
{
public int clientId { get; set; }
public double availableAmount { get;set; }
}
}