using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KLHZ.Trader.Core.Math.Declisions.Dtos { public class HistItem { public decimal Value { get; set; } public decimal Count { get; set; } } }