using System; using System.Collections.Generic; using System.Text; namespace Binance.TradeRobot.Model.Dto { public class ExecutionLogPageResponse { public long TotalCount { get; set; } public IList Items { get; set; } } }