klhztrader/KLHZ.Trader.Core.Math/Declisions/Dtos/HistItem.cs

15 lines
310 B
C#

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