You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
375 B
17 lines
375 B
namespace Binance.TradeRobot.Model.Dto
|
|
{
|
|
public class QueryUserAccountRequest
|
|
{
|
|
public long UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 页数,从1开始
|
|
/// </summary>
|
|
public int PageIndex { get; set; }
|
|
|
|
/// <summary>
|
|
/// 每页记录数
|
|
/// </summary>
|
|
public int PageSize { get; set; }
|
|
}
|
|
}
|
|
|